pip安装报错:is not a supported wheel on this platform
Posted 悟空的爸爸
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pip安装报错:is not a supported wheel on this platform相关的知识,希望对你有一定的参考价值。
转自:http://www.cnblogs.com/nice-forever/p/5371906.html
可能的原因1:安装的不是对应python版本的库,下载的库名中cp27代表python2.7,其它同理。
可能的原因2:这个是我遇到的情况(下载的是对应版本的库,然后仍然提示不支持当前平台)
我下载到的numpy库文件名:
使用pip安装(在命令行中):
报错:*** is not a supported wheel on this platform,通过在stackoverflow上的一个帖子成功解决问题。
方法:在shell中输入import pip; print(pip.pep425tags.get_supported())可以获取到pip支持的文件名还有版本,我这里如下:
1 >>> import pip; print(pip.pep425tags.get_supported()) 2 [(\'cp35\', \'cp35m\', \'manylinux1_x86_64\'), (\'cp35\', \'cp35m\', \'linux_x86_64\'), (\'cp35\', \'abi3\', \'manylinux1_x86_64\'), (\'cp35\', \'abi3\', \'linux_x86_64\'), (\'cp35\', \'none\', \'manylinux1_x86_64\'), (\'cp35\', \'none\', \'linux_x86_64\'), (\'cp34\', \'abi3\', \'manylinux1_x86_64\'), (\'cp34\', \'abi3\', \'linux_x86_64\'), (\'cp33\', \'abi3\', \'manylinux1_x86_64\'), (\'cp33\', \'abi3\', \'linux_x86_64\'), (\'cp32\', \'abi3\', \'manylinux1_x86_64\'), (\'cp32\', \'abi3\', \'linux_x86_64\'), (\'py3\', \'none\', \'manylinux1_x86_64\'), (\'py3\', \'none\', \'linux_x86_64\'), (\'cp35\', \'none\', \'any\'), (\'cp3\', \'none\', \'any\'), (\'py35\', \'none\', \'any\'), (\'py3\', \'none\', \'any\'), (\'py34\', \'none\', \'any\'), (\'py33\', \'none\', \'any\'), (\'py32\', \'none\', \'any\'), (\'py31\', \'none\', \'any\'), (\'py30\', \'none\', \'any\')]
通过这里可以发现上面下载的文件名格式是不支持的,修改为:numpy-1.10.4+mkl-cp27-none-win32.whl即可成功安装。
(参考帖子网址:http://stackoverflow.com/questions/28107123/cannot-install-numpy-from-wheel-format?rq=1)
(python库下载地址(库很丰富,下载速度也很快):http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy)
以上是关于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
6.安装pyhook报错is not a supported wheel on this platform
python安装osgeo及shapefile库is not a supported wheel on this platform 的问题
python更新pip报错pip._vendor.urllib3.exceptions.ProxySchemeUnknown: Not supported proxy scheme None(示例代码
成功解决pip:This error originates from a subprocess, and is likely not a problem with pip. 轩详细教程