尝试通过Anaconda在Windows64上安装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工具包?
发布于 2017-03-30 19:32:57
您可以尝试更新conda:conda update conda
您也可以直接从以下地址下载文件:
https://anaconda.org/rios/natgrid/files
您可以使用以下命令作为替代pip install:
python -m pip install .\natgrid-0.2.1-cp27-none-win_amd64.whl
或者这个post的替代方案:
conda install -c jochym natgrid=0.2
发布于 2018-10-12 20:10:16
https://stackoverflow.com/questions/43116302
复制相似问题