conda在windows 64上安装matplotlib的natgrid python工具包

时间:2017-03-30 11:15:58

标签: python windows matplotlib anaconda conda

尝试通过Anaconda在Windows 64上安装natgrid matplotlib工具包(https://github.com/matplotlib/natgrid)。

我只能在Windows上找到一个支持的软件包https://anaconda.org/rios/natgrid

当我运行conda install -c rios natgrid=0.2时 它返回PackageNotFoundError: Package not found: Conda could not find '

是否有人知道导致错误的原因,是否有其他软件包或解决方法我可以使用在Windows上的Anaconda python发行版中使用natgrid工具包?

2 个答案:

答案 0 :(得分:0)

您可以尝试更新conda:conda update conda

您也可以直接从以下网址下载文件:

https://anaconda.org/rios/natgrid/files

您可以使用替代pip安装:

python -m pip install .\natgrid-0.2.1-cp27-none-win_amd64.whl

或此post的替代方案:

conda install -c jochym natgrid=0.2

答案 1 :(得分:0)

这对我有用(带有conda的win64):

conda install -c rios natgrid 

来自here