欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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())

pip 安装whl文件报 is not a supported wheel on this platform解决方案
问题解决

相关标签: pip install