我在这里是因为我试图在Anaconda上安装Chaco模块,但它不能工作。首先,我尝试了简单的命令:
conda install -c anaconda chaco=4.5.0但它会返回包规范问题:
UnsatisfiableError: The following specifications were found to be in conflict:
- chaco 4.5.0* -> enable 4.5.1 -> numpy 1.10* -> python 2.7* -> openssl 1.0.1*
- python 3.6*
Use "conda info <package>" to see the dependencies for each package然后我尝试了Python2.7版本的Anaconda,但我仍然无法使用由于PyQt5而被卸载的PyQt4。我在PyQt4中创建了一个环境,但仍然没有找到该模块。我希望我能在Python3.6中使用查科,但我不知道该怎么做……
发布于 2017-09-16 02:53:28
Anaconda目前没有为Python3提供Chaco包。Anaconda支持的Chaco最新版本是4.5:https://anaconda.org/anaconda/chaco
正如你在这里看到的,直到2016年12月的4.6版,Python3支持才被添加到Chaco中:https://github.com/enthought/chaco/releases/tag/4.6.0
您可以使用pip install chaco在Python3.6中安装Chaco,但您还需要使用numpy、setuptools、enable以及可能的Visual Studio。
我不知道为什么在Python2.7Anaconda环境中安装Chaco会有困难,但是Enable不支持PyQt 5,您必须使用PyQt 4:https://github.com/enthought/enable#prerequisites
https://stackoverflow.com/questions/44586253
复制相似问题