I am attempting to install .whl file types to Python, specifically the numpy+mkl 1.14 via the command prompt. When I put in the command pip install "numpy-1.14.2+mkl-cp36-cp36m-win_amd64.whl"
I get the following output.
numpy-1.14.2+mkl-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.
I have not found a fix that works for me and I have done the following:
- Ensure I have the correct version and file type for my version via
pip.pep425tags.get_supported()
Python 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 17:00:18) [MSC v.1900 64 bit (AMD64)] on win32
...
('cp36', 'cp36m', 'win_amd64')
- ensured pip is up to date via
pip --version
pip 9.0.3 from c:\users\alex\appdata\local\programs\python\python36-32\lib\site-packages (python 3.6)
- changed the name to cp36-none-win_amd64 to attempt to work around the name
numpy-1.14.2+mkl-cp36-none-win_amd64.whl is not a supported wheel on this platform.
pip --version
. – phd