pip 安装whl文件报 is not a supported wheel on this platform解决方案
程序员文章站
2022-05-26 19:09:20
...
出现问题的原因:
1. 安装的不是对应Python版本的库,下载的库名中cp27代表python2.7,其它同理。
2. 下载的是对应版本的库,提示不支持当前平台
解决方案:
1、下载对应Python版本的whl文件
2、查看pip支持的平台:
import pip
print(pip.pep425tags.get_supported())
如出现 Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: module 'pip' has no attribute 'pep425tags'
使用如下方式:
import pip._internal
print(pip._internal.pep425tags.get_supported())
问题解决
上一篇: 纯css彩虹进度条
下一篇: vue中子父组件传值
推荐阅读
-
Python使用pip安装报错:is not a supported wheel on this platform的解决方法
-
Python 安装库文件 is not a supported wheel on this platform的解决方案
-
安装MySQL_python驱动报is not a supported wheel错解决方案
-
pip 安装whl文件报 is not a supported wheel on this platform解决方案
-
Python使用pip安装报错:is not a supported wheel on this platform的解决方法
-
Python 安装库文件 is not a supported wheel on this platform的解决方案