Question

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?

Was it helpful?

Solution

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

OTHER TIPS

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
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top