pip安装whl文件报错:ERROR: ... is not a supported wheel on this platform

python库whl文件下载地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/

whl文件有win32(32位)和win_amd64(64位),这里的位数指的是本机位数,与python的位数无关

安装方法:cd切换到安装文件所在的目录下,使用 “pip install 文件全名”  即可安装

安装报错:ERROR: ... is not a supported wheel on this platform.(文件不支持安装)

解决方法:通过查看pip可安装文件,将文件名改为对应的名称后再进行安装,查看可安装的文件:pip debug --verbose

pip安装whl文件报错:ERROR: ... is not a supported wheel on this platform_第1张图片

pip安装whl文件报错:ERROR: ... is not a supported wheel on this platform_第2张图片

修改文件名后再进行安装(此处报错,安装文件版本太低,可忽略):

查看安装结果: 

你可能感兴趣的:(python,pip,python,开发语言)