当前位置:网站首页>pip安装报错:is not a supported wheel on this platform

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

2022-08-11 05:24:00 Sierkinhane

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

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

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

  我下载到的opencv库文件名(正确):

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

  • opencv_python-3.1.0-cp34-cp34m-win_amd64.whl

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

  方法:在shell中输入import pip; print(pip.pep425tags.get_supported())可以获取到pip支持的文件名还有版本,

找到支持的版本就可以安装成功了

原网站

版权声明
本文为[Sierkinhane]所创,转载请带上原文链接,感谢
https://blog.csdn.net/Sierkinhane/article/details/79451925