试图通过anaconda在windows 64上安装matplotlib工具包(https://github.com/matplotlib/natgrid)。
我只能找到一个Windows支持的软件包,它在这里https://anaconda.org/rios/natgrid
当我运行natgrid
它返回conda install -c rios natgrid=0.2
有人知道是什么导致了这个错误吗?我是否可以使用另一个包或解决方法来使用windows上anaconda python发行版中的PackageNotFoundError: Package not found: Conda could not find '工具包?

最佳答案

您可以尝试更新conda:conda update conda
也可以直接从以下位置下载文件:
https://anaconda.org/rios/natgrid/files
您可以使用作为替代pip安装:
python -m pip install .\natgrid-0.2.1-cp27-none-win_amd64.whl
或者从这里选择:
conda install -c jochym natgrid=0.2

关于python - conda 在Windows 64上安装matplotlib的natgrid python工具包,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43116302/

10-13 02:24