Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

filename.whl is not supported wheel on this platform

Tags:

python

pip

I would like to install scipy-0.15.1-cp33-none-win_amd64.whl that I have saved to the local drive. I am using:

pip 6.0.8 from C:\Python27\Lib\site-packages python 2.7.9 (default, Dec 10 2014, 12:28:03) [MSC v.1500 64 bit (AMD64)] 

When I run:

pip install scipy-0.15.1-cp33-none-win_amd64.whl 

I get the following error:

scipy-0.15.1-cp33-none-win_amd64.whl is not a supported wheel on this platform

What is the problem?

like image 386
lskrinjar Avatar asked Feb 17 '15 18:02

lskrinjar


People also ask

Is not a supported wheel for this platform?

The error message “… is not a supported wheel on this platform.” means there is some incompatibility between the wheel package and your version of Python. Two common sources of this error are that… the package expects a different system type (32-bit vs 64-bit).


2 Answers

cp33 means CPython 3.3.

You need scipy‑0.15.1‑cp27‑none‑win_amd64.whl instead.

like image 162
ismail Avatar answered Oct 05 '22 14:10

ismail


This can also be caused by using an out-of-date pip with a recent wheel file.

I was very confused, because I was installing numpy-1.10.4+mkl-cp27-cp27m-win_amd64.whl (from here), and it is definitely the correct version for my Python installation (Windows 64-bit Python 2.7.11). I got the "not supported wheel on this platform" error.

Upgrading pip with python -m pip install --upgrade pip solved it.

like image 36
aldel Avatar answered Oct 05 '22 16:10

aldel