Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to solve pygame‑1.9.3‑cp36‑cp36m‑win32.whl is not a supported wheel on this platform

Tags:

python

pip

pygame

I downloaded pygame‑1.9.3‑cp36‑cp36m‑win32.whl from here: http://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame. But when I tried to install, it shown error:

enter image description here

And I checked, pygame‑1.9.3‑cp36‑cp36m‑win32.whl should support on my Python platform.

('cp36', 'cp36m', 'win32') all matched with the filename. But why I still cannot install it?

I also have my wheel upgraded.

Any help would be appreciated.

like image 432
wei Avatar asked Apr 24 '17 02:04

wei


1 Answers

This is no longer necessary. Pygame is a much easier install these days. Just do:

> pip install pygame

and it will automatically select the right download for your environment.

like image 80
Chris Avatar answered Nov 15 '22 03:11

Chris