Search code examples
pythonpygamepippython-3.4

How to install Pygame on Python 3.4?


So I have this little problem. When I try to install Pygame for Python 3.4 I download a .whl (wheel?) file and don't know how to use it. Some guys told me something about pip but don't know how to use/install it.


Solution

  • You can install the wheel file for Python 3.4 here:

    First you have to install the wheel package from pip then install Pygame.

    pip install wheel
    
    pip install pygame‑1.9.2a0‑cp34‑none‑win_amd64.whl
    

    Here's a video to help you install pip on Youtube.