尝试通过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
工具包?
答案 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)