Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.whl is not a valid wheel filename, storing debug log for failure in C:\

I am having trouble installing a wheel file via pip.

  1. I open my command prompt
  2. write the following in the prompt

    C:/Python34/Scripts/pip install C:/Users/Hamsa/Downloads/pygame.whl

  3. Then I get this message

    pygame.whl is not a valid wheel filename. Storing debug log for failure in C:\Users\Hamsa\pip\pip.log

I don't what to do and I need your help.

like image 366
Hamsa Ahmed Mohamed Avatar asked Oct 19 '15 11:10

Hamsa Ahmed Mohamed


People also ask

Is not a supported wheel on this platform CMD?

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

You should correct name format for installing wheel file. Because wheel file name also includes many information such as the version of program, supported python version. Your command should be like the command below.

pip install pygame‑1.9.3‑cp34‑cp34m‑win_amd64.whl
like image 111
Harun ERGUL Avatar answered Oct 21 '22 22:10

Harun ERGUL


If the answer suggested by @Harun doesnot work, try

python -m pip install <whl file name with complete path>.whl

If u have more than 1 Python versions installed , check which version of python is being used to install the package using:

python -v 

Also refer to pygame readme for an official installation guide.

like image 34
Harshdeep Sokhey Avatar answered Oct 21 '22 22:10

Harshdeep Sokhey