Skip to content Skip to sidebar Skip to footer

What Are The Valid Values For --platform, --abi, And --implementation For Pip Download?

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?

Solution 1:

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:

cp: CPythonip: IronPythonpp: PyPyjy: Jython

--platform:

win32
linux_i386
linux_x86_64

Post a Comment for "What Are The Valid Values For --platform, --abi, And --implementation For Pip Download?"