什么是 numpy pypi 包命名约定
What is the numpy pypi package naming convention
正在尝试确定哪个 numpy 包与我的 python 环境兼容。我的服务器无法上网,所以我需要在本地下载安装包。
我知道cp27指的是Python 2.7,但是这两个包有什么区别:
numpy-1.12.0rc1-cp27-cp27m-manylinux1_x86_64.whl
numpy-1.12.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
不同的部分是ABI tag。
mu
表示--enable-unicode=ucs4
m
本身就是 --enable-unicode=ucs2
见UCS-2 vs UCS-4 builds; to determine which you need for your current installation, see How to find out if Python is compiled with UCS-2 or UCS-4?
正在尝试确定哪个 numpy 包与我的 python 环境兼容。我的服务器无法上网,所以我需要在本地下载安装包。
我知道cp27指的是Python 2.7,但是这两个包有什么区别:
numpy-1.12.0rc1-cp27-cp27m-manylinux1_x86_64.whl
numpy-1.12.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
不同的部分是ABI tag。
mu
表示--enable-unicode=ucs4
m
本身就是--enable-unicode=ucs2
见UCS-2 vs UCS-4 builds; to determine which you need for your current installation, see How to find out if Python is compiled with UCS-2 or UCS-4?