本文介绍了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’
--implementation
:
cp: CPython
ip: IronPython
pp: PyPy
jy: Jython
--platform
:
win32
linux_i386
linux_x86_64
这篇关于pip下载的--platform,-abi和--implementation的有效值是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!