Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

filename.whl is not a supported wheel on this platform

I saw the same question, but it didn't work for me.

pip install PyOpenGL.3.1.1-cp34-cp34m-win_amd64.whl

I also have the same problem for NumPy:

pip install numpy-1.11.1+mkl-cp34-cp34m-win_amd64.whl

Then I get:

numpy-1.11.1+mkl-cp34-cp34m-win_amd64.whl is not a supported wheel on this platform. Storing debug log for failure in C://Users/myUsername/pip/pip.log

I'm using 64-bit and Python 3.4.0. What is wrong?

like image 701
teoman Avatar asked Aug 10 '16 07:08

teoman


People also ask

Where does pip install WHL files?

You can install the . whl file, using pip install filename . Though to use it in this form, it should be in the same directory as your command line, otherwise specify the complete filename, along with its address like pip install C:\Some\PAth\filename .

How do I open a WHL file in Windows?

If you cannot open your WHL file correctly, try to right-click or long-press the file. Then click "Open with" and choose an application. You can also display a WHL file directly in the browser: Just drag the file onto this browser window and drop it.


2 Answers

  1. Check the supported tags for wheel version for your system(platform).
  2. To check supported tag run the following command pip debug --verbose
  3. When you run the command, you will get many lists, along with supported tags, download compatible wheel file from supported tags.
  4. install wheel file using this command pip install pycurl-7.43.0.4-cp37-cp37m-win_amd64.whl

Supported tags portion looks like:

enter image description here

like image 57
Sadekujjaman Avatar answered Nov 13 '22 05:11

Sadekujjaman


Try updating pip first before you rename pip install --upgrade pip

like image 25
DSchmidt Avatar answered Nov 13 '22 04:11

DSchmidt