我一直在遵循这里的教程:http://discoproject.org/doc/disco/start/install.html
并且一直成功运行到我运行脚本的那一点。我得到了错误:
no module named disco.core我已经按照上面的说明安装了disco,但这似乎没有安装python库。
我尝试过使用conda、pip和easy_install安装它,但没有成功。
有谁有什么想法吗?
发布于 2013-07-18 02:00:29
运行make install,它应该在标准位置(站点包或dist包)安装disco库。
发布于 2016-12-23 07:40:46
这对我来说只适用于将库安装到一个虚拟环境中:
virtualenv some_venv_here && source some_venv_here/lib/activate
git clone https://github.com/discoproject/disco.git
cd disco/lib
python setup.py installhttps://stackoverflow.com/questions/17706487
复制相似问题