What is the meaning of 'cp3xm' and 'cp2xm' in the name of Python wheels?

后端 未结 1 930
粉色の甜心
粉色の甜心 2021-01-13 01:33

To my knowledge, the naming rules of python wheel is

package_version-related_python_version-none-32bits_or_64bits.whl

For example,

相关标签:
1条回答
  • 2021-01-13 02:35

    From PEP 3149 the m indicates pymalloc is in use as the memory allocator

    The second component of the wheel name is the "abi" component. This was always none in wheels produced by older versions of wheel <26 as abi detection wasn't yet implemented.

    In newer versions of wheel, the abi is populated. You need a sufficiently new version of pip in order to install these wheels.

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