What are the valid values for --platform, --abi, and --implementation for pip download?

前端 未结 1 481
不知归路
不知归路 2020-12-10 06:03

pip download has several flags that I would like to play with --platform, --abi, and --implementation.

Where can I find the c

1条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-10 06:15

    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: CPython
    ip: IronPython
    pp: PyPy
    jy: Jython
    

    --platform:

    win32
    linux_i386
    linux_x86_64
    

    0 讨论(0)
提交回复
热议问题