我正在尝试为我的python代码设置Basemap,其要求之一是pyproj。我已经从here
下载了pyproj和基本图我的Python版本是2.7.13
我的pip命令正在升级到最新版本。
还使用以下命令将setuptools升级到最新版本
pip install --upgrade setuptools
我的Linux操作系统是通过命令找到的x86_64
uname -m
现在,当我在命令下运行时:
pip install basemap-1.2.0-cp27-cp27m-win_amd64.whl
或
pip install pyproj-1.9.5.1-cp27-cp27m-win_amd64.whl
我看到此错误:
basemap-1.2.0-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.
和
pyproj-1.9.5.1-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.
我在命令下方找到了支持的车轮:
python -c "from pip import pep425tags;print(wheel.pep425tags.get_supported())"
我得到以下输出:
[('cp27', 'cp27mu', 'linux_x86_64'), ('cp27', 'none', 'linux_x86_64'), ('cp27', 'none', 'any'), ('cp2', 'none', 'any'), ('cp26', 'none', 'any'), ('cp25', 'none', 'any'), ('cp24', 'none', 'any'), ('cp23', 'none', 'any'), ('cp22', 'none', 'any'), ('cp21', 'none', 'any'), ('cp20', 'none', 'any'), ('py2', 'none', 'linux_x86_64'), ('py27', 'none', 'any'), ('py2', 'none', 'any'), ('py26', 'none', 'any'), ('py25', 'none', 'any'), ('py24', 'none', 'any'), ('py23', 'none', 'any'), ('py22', 'none', 'any'), ('py21', 'none', 'any'), ('py20', 'none', 'any')]
有人可以帮我解决我的问题吗?