AttributeError: module 'pip' has no attribute 'pep425tags'报错解决方案

whl is not a supported wheel on this platform 报错解决方案

注:本文为博主原创文章,未经博主允许不得转载。 如需转载请注明出处,否则必定追究法律责任
https://blog.csdn.net/weixin_44232093/article/details/98877076

在安装wheel包的时候,包的版本和自己的系统不匹配的时候就会报如下错误

whl is not a supported wheel on this platform

我的配置如下

  • ubuntu16.04 LTS系统
  • python2.7/python3.5 64位

本人目前在ubuntu16.04系统下安装opencv-python,安装好久都没弄好,倒是把wheel包的解决方法都弄出来了,现记录如下

有时候我们以为我们的系统是64或者32位的,下载的wheel包也是64位的,这就有一个误区,python的版本和系统的不一样,也许你64位系统运行的是32位的python,所以首先我们应该查看系统位数

1.查看系统是64/32位的系统

  • 在ubuntu系统中打卡python,根据你想查看的python输入python/python3
  • import platform 引入包
  • platform.architecture()调用函数查看运行位数,即可查看到位数
  • 关于wheel包,pip是根据文件名检测当前wheel包是否是本系统支持的wheel包,而不是下载格式

2.查看64位系统pip支持的wheel包文件名版本

  • 根据你想查看的python版本来打开python编辑器 python/python3,python是2.7/python3是3.5
  • 引入pip包,注意64位需要添加后缀 import pip._internal
  • 查看支持 print(pip._internal.pep425tags.get_supported()) python2.7需要去掉括号

当你看到这些信息的时候,代表操作成功

[('cp35', 'cp35m', 'win_amd64'), ('cp35', 'none', 'win_amd64'), ('py3', 'none',
'win_amd64'), ('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')]

以上就是对wheel包的一个文件名和版本的确定,确定后就可以选择相对应的包进行安装了

你可能感兴趣的:(ubuntu)