문제

I've been following the tutorial here: http://discoproject.org/doc/disco/start/install.html

and have been succesful up to the point where I run the script. I get the error:

no module named disco.core

I have installed disco according to the instructions above, but this doesn't seem to have installed the python library.

I have tried installing it using conda, pip, and easy_install without any luck..

Anyone have any ideas?

도움이 되었습니까?

해결책

Run make install and it should install disco libs in standard location (site-packages or dist-packages).

다른 팁

This worked for me for only the installation of the library into a virtualenv:

virtualenv some_venv_here && source some_venv_here/lib/activate
git clone https://github.com/discoproject/disco.git
cd disco/lib
python setup.py install
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top