wazzu62
wazzu62

Reputation: 47

whl is not a supported wheel on this platform

I am new to python, and am trying to install some modules/packages using .whl file. The system does not have access to the internet so everything is local.

Attempt at installing 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.

So what am I missing?

Upvotes: 5

Views: 5841

Answers (1)

Charles Duffy
Charles Duffy

Reputation: 295291

cp27-cp27m manylinux packages are compatible with a Python interpreter compiled with --enable-unicode=ucs2.

For an interpreter compiled with --enable-unicode=ucs4, you instead need cp27-cp27mu packages.

Upvotes: 3

Related Questions