Anaconda安装GDAL时,报错:GDAL-3.0.2-cp37-cp37m-win32.whl is not a supported wheel on this platform.的解决方法
有如下几点需要核对一下:
- 你下载的GDAL的版本是正确的,python2.7.x对应的版本是cp27,python3.6.x对应的版本是cp36
你可以在Anaconda Prompt中输入python查看python的版本
2.检查你的python是哪种架构(32位或64位)?
打开Anaconda的spyder或者Jupyter Notebook ,运行
import platform
platform.architecture()
所以对于我而言,适合我的GDAL的版本是GDAL-3.0.2-cp37-cp37m-win_amd64.whl
- 检查你使用的文件名是否正确(即,不应在文件名后附加(1),如果你两次下载文件,可能会出现这种情况)
4.检查你的pip有没有更新,如果没有,你可以使用 下面条命令进行更新
python -m pip install -upgrade pip
参考:
https://stackoverflow.com/questions/28568070/filename-whl-is-not-supported-wheel-on-this-platform