`
lizhiyu211
  • 浏览: 225523 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

python wheel 包命名规则和abi 兼容

 
阅读更多

wheel包命名规则:

wheel 包的命名格式为 {distribution}-{version}(-{build tag})?-{python tag}-{abi tag}-{platform tag}.whl 。

 查看兼容的包名规则

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

 

执行结果如下:

>>> from pip import pep425tags
>>> print(pep425tags.get_supported())
[('cp27', 'cp27m', 'win_amd64'), ('cp27', 'none', 'win_amd64'), ('py2', 'none',
'win_amd64'), ('cp27', 'none', 'any'), ('cp2', 'none', 'any'), ('py27', 'none',
'any'), ('py2', 'none', 'any'), ('py26', 'none', 'any'), ('py25', 'none', 'any')
, ('py24', 'none', 'any'), ('py23', 'none', 'any'), ('py22', 'none', 'any'), ('p
y21', 'none', 'any'), ('py20', 'none', 'any')]

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics