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