How to install this wheel?

后端 未结 5 750
灰色年华
灰色年华 2020-12-11 08:26

I managed to install pip but when I use pip to install the downloaded wheel, it prints:

C:\\Python34\\Scripts\\pip install pygame-1.9.2a0-cp34-none-win_amd64         


        
5条回答
  •  我在风中等你
    2020-12-11 09:16

    I had to remove the 64bit python and install the 32bit version to solve this issue.

    c:\python34\scripts\pip install c:\users\USER\downloads\pygame-1.9.2a0-cp34-none-win32.whl
    Unpacking c:\users\USER\downloads\pygame-1.9.2a0-cp34-none-win32.whl
    Installing collected packages: pygame
    Successfully installed pygame
    Cleaning up...
    

    Worked fine with 32bit :)

提交回复
热议问题