whl不是此平台上支持的滚轮

时间:2017-10-18 19:00:55

标签: python python-2.7 pip python-wheel

我是python的新手,我正在尝试使用.whl文件安装一些模块/包。系统无法访问互联网,因此一切都是本地的。

  • 我正在运行RHEL 6.9 64bit 2.6.32-696.10.1.el6.x86_64
  • Python版本为2.7.12(以2.6为单位)

  • platform.architecture() ('64位','ELF')

  • 我正在运行pip 9.0.1

尝试安装numpy:

# /usr/local/bin/pip2.7 install numpy-1.13.3-cp27-cp27m-manylinux1_x86_64.whl
numpy-1.13.3-cp27-cp27m-manylinux1_x86_64.whl is not a supported wheel on this platform.

那么我错过了什么?

1 个答案:

答案 0 :(得分:2)

cp27-cp27m manylinux包与使用--enable-unicode=ucs2编译的Python解释器兼容。

对于使用--enable-unicode=ucs4编译的解释器,您需要cp27-cp27mu个包。