本文介绍了pip 下载的 --platform、--abi 和 --implementation 的有效值是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
pip 下载 有几个我想使用的标志--platform
、--abi
和 --implementation
.
pip download has several flags that I would like to play with --platform
, --abi
, and --implementation
.
在哪里可以找到这些标志的有效值的完整列表?
Where can I find the complete list of valid values for these flags?
推荐答案
我认为没有一个明确的列表.你必须从不同的来源收集它.从 PEP 425 开始:https://www.python.org/dev/peps/pep-0425/
I don't think there is one definitive list. You have to collect it from different sources. Start with PEP 425: https://www.python.org/dev/peps/pep-0425/
python 标签:‘py27’、‘cp33’
python tag: ‘py27’, ‘cp33’
abi 标签:‘cp32dmu’,‘无’
abi tag: ‘cp32dmu’, ‘none’
平台标签:‘linux_x86_64’,‘任何’
platform tag: ‘linux_x86_64’, ‘any’
--实现
:
cp: CPython
ip: IronPython
pp: PyPy
jy: Jython
--platform
:
win32
linux_i386
linux_x86_64
这篇关于pip 下载的 --platform、--abi 和 --implementation 的有效值是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!