Reputation: 115
I would like to install pygame-1.9.3-cp37-cp37m-win_amd64.whl
for python 3.6(64 bit)
I did download wheel-0.30.0
and upgraded it
but when i run :
C:\Users\hp>pip install pygame-1.9.3-cp37-cp37m-win_amd64.whl
i get:
pygame-1.9.3-cp37-cp37m-win_amd64.whl is not a supported wheel on this platform.
I would like to know what the problem is?
Upvotes: 0
Views: 4848
Reputation: 43523
That wheel is for the (unreleased, development) version 3.7 of CPython, on a 64-bit version of ms-windows.
Look here and pick the wheel that matches your Python version and platform, where
cp27
→ CPython 2.7cp34
→ CPython 3.4cp35
→ CPython 3.5cp36
→ CPython 3.6and
win32
→ 32-bit version of ms-windowswin_amd64
→ 64-bit version of ms-windowsUpvotes: 1