Python——pip安装报错:is not a supported wheel on this platform

Posted zhouxinfei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python——pip安装报错:is not a supported wheel on this platform相关的知识,希望对你有一定的参考价值。

pip安装报错:is not a supported wheel on this platform

可能的原因1:安装的不是对应python版本的库,下载的库名中cp35代表python3.5,其它同理。

可能的原因2:这个是我遇到的情况(下载的是对应版本的库,然后仍然提示不支持当前平台)

我下载到的Twisted库文件名:

Twisted-17.5.0-cp35-cp35m-win_amd64.whl

使用pip安装(在命令行中):

pip install Twisted-17.5.0-cp35-cp35m-win_amd64.whl

报错:* is not a supported wheel on this platform,通过在stackoverflow上的一个帖子成功解决问题。

方法:在shell中输入

import pip
print(pip.pep425tags.get_supported())

 

可以获取到pip支持的文件名还有版本,我这里如下:

>>import pip; print(pip.pep425tags.get_supported())
[(cp35, none, win_amd64), (py3, none, win_amd64), (cp35, none, any), (cp3, none, any), (cp34, none, any), (cp33, none, any),
 (cp32, none, any), (cp31, none, any), (cp30, none, any), (py
35, none, any), (py3, none, any), (py34, none, any), (py33, 
none, any), (py32, none, any), (py31, none, any), (py30, none, any)]

 

通过这里可以发现上面下载的文件名格式是不支持的,修改为:Twisted-17.5.0-cp35-none-win_amd64.whl即可成功安装。

其它的库也同理可以成功安装,不过也请注意库的依赖。


以上是关于Python——pip安装报错:is not a supported wheel on this platform的主要内容,如果未能解决你的问题,请参考以下文章

pip安装报错:is not a supported wheel on this platform

pip安装numpy等库报错:is not a supported wheel on this platform

成功解决pip:This error originates from a subprocess, and is likely not a problem with pip. 轩详细教程

python框架Scrapy报错TypeError: 'float' object is not iterable解决

pip cannot confirm SSL certificate: SSL module is not available

pip install 报错 TypeError: 'module' object is not callable