Error "filename.whl is not a supported wheel on this platform"
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Hypnotic Puzzle2
--
Chapters
00:00 Error &Quot;Filename.Whl Is Not A Supported Wheel On This Platform&Quot;
00:39 Accepted Answer Score 553
00:55 Answer 2 Score 287
01:29 Answer 3 Score 109
02:01 Answer 4 Score 30
02:26 Thank you
--
Full question
https://stackoverflow.com/questions/2856...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#python #pip
#avk47
ACCEPTED ANSWER
Score 553
cp33 means CPython 3.3.
You need scipy‑0.15.1‑cp27‑none‑win_amd64.whl instead.
ANSWER 2
Score 287
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.
ANSWER 3
Score 109
I had the same problem while installing scipy-0.17.0-cp35-none-win_amd64.whl and my Python version was 3.5. It returned the same error message:
scipy-0.17.0-cp35-none-win_amd64.whl is not a supported wheel on this platform.
I realized that amd64 is not about my Windows, but about the Python version. Actually I am using a 32-bit Python on a 64-bit Windows. Installing the following file solved the issue:
scipy-0.17.0-cp35-none-win32.whl
ANSWER 4
Score 30
I come across this problem because of a wrong name of my package (scipy-0.17.0-cp27-none-win_amd64 (1)).
After I deleted the '(1)' and changed the package to
scipy-0.17.0-cp27-none-win_amd64, the problem got resolved.