I want to install numpy which I downloaded from http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy and I tried two files:
numpy‑1.13.1+mkl‑cp36‑cp36m‑win32.whl
numpy‑1.13.1+mkl‑cp36‑cp36m‑win_amd64.whl
I got xxx.whl is not a supported wheel on this platform
.
As I looked for a solution, I found this useful link: filename.whl is not supported wheel on this platform
I've tried every suggested solution from that question but nothing works. What I've done already:
- I followed @gregorio099's comment to check the version of Python and I get ('32bit', 'WindowsPE')
- I followed @aldel's comment to update pip and I get requirement already up-to-date: pip in /usr/lib/python2.7/site-packages
I also follow @Arun Naudiyal's answer
import pip print(pip.pep425tags.get_supported())
and get:
[('cp36', 'cp36m', 'win32'), ('cp36', 'none', 'win32'), ('py3', 'none', 'win32'), ('cp36', 'none', 'any'), ('cp3', 'none', 'any'), ('py36', 'none', 'any'), ('py3', 'none', 'any'), ('py35', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
For more information, I use Python 3.6.2 on Windows 10. I don't have C:\Python so I used these commands to find a directory for my python
import os
import sys
os.path.dirname(sys.executable)
and I get 'C:\\Users\\my_name\\AppData\\Local\\Programs\\Python\\Python36-32'
I'm not sure whether this is a source of the problem.