我正在尝试在anaconda中创建一个环境以使用arcmap模块。我遵循了this answer上的教程。
在命令提示符下运行:
conda create -n arc105 python=2.7.12 numpy=1.9.3 matplotlib=1.5.2 pyparsing xlrd xlwt pandas scipy ipython ipython-notebook ipython-qtconsole
但出现以下错误:
UnsatisfiableError: The following specifications were found to be in conflict:
- matplotlib=1.5.2 -> numpy=1.10
- numpy=1.9.3
Use "conda info <package>" to see the dependencies for each package.
我该如何解决?是否应该在不安装matplotlib的情况下创建环境,然后在版本1.5.2以后强制安装matplotlib?
更新:我分别安装了matplotlib
conda install -n arc105 --no-deps matplotlib=1.5.2
到目前为止,一切似乎都可以正常进行,尽管我仍然对此表示怀疑,认为它始终可以正常运行。 有人在执行此操作时遇到问题吗?