python wheel 包命名规则和abi 兼容 博客分类: python
程序员文章站
2024-03-24 15:04:28
...
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')]
上一篇: ButtonStyle 自定义(SwiftUI中文文档手册)
下一篇: 自定义View