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?
Advertisement
Answer
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 tag: ‘py27’, ‘cp33’
abi tag: ‘cp32dmu’, ‘none’
platform tag: ‘linux_x86_64’, ‘any’
--implementation
:
JavaScript
x
5
1
cp: CPython
2
ip: IronPython
3
pp: PyPy
4
jy: Jython
5
--platform
:
JavaScript
1
4
1
win32
2
linux_i386
3
linux_x86_64
4