About 47,500 results
Open links in new tab
  1. How to solve the "pip install pygame" issue? - Stack Overflow

    Jun 23, 2019 · For this, you have to install pygame package from the cmd (on Windows) or from the terminal (on mac). Just type pip install pygame.If it doesn't work for you, then try using this statement …

  2. How to install Pygame on Python 3.4? - Stack Overflow

    Jan 27, 2023 · Here is a link to download pygame for different versions of Python, up to Python 3.4 in 32 bit and 64 bit. To test if it installed properly, open your python shell and type in this code:

  3. python - How do I install pygame for a new version of idle? (Windows ...

    Oct 20, 2020 · when I run' python3.9 -m pip install pygame', it says "'python3.9' is not recognized as an internal or external command,operable program or batch file.". and yes, I do have multiple versions …

  4. Python pygame not installing - Stack Overflow

    Oct 25, 2022 · pip install pygame-ce ^ pygame-ce (pygame community edition) is a modern fork of pygame by many pygame contributors that supports 3.11 out of the box, just recently launched.

  5. python 3.x - How to install pygame windows 10? - Stack Overflow

    Aug 23, 2015 · I just tried to install pygame for python 3.4 my windows computer, but apparently I need to extract the whl file? I have seen other questions like this one on stackoverflow and it says to write in

  6. python - How do I install pygame with cmd? - Stack Overflow

    Feb 5, 2021 · To install pygame you need to write the command: pip install pygame in your command prompt, if that does not work try: pip3 install pygame If that fails, make sure to install python from this …

  7. python - How do I install pygame on Ubuntu 24? - Stack Overflow

    Dec 7, 2024 · Try apt install python3-pygame or use a Virtual Environment, but don't create an apt repo for pygame unless you're willing to build and upload every version (IIRC).

  8. python - Cant install pygame - Stack Overflow

    Oct 23, 2019 · Assuming you're using an IDE with the ability to automatically install imports (PyCharm for example) you can just set your IDE's current interpreter to python 3.7.4 and use it to install …

  9. Error when trying to install pygame on Python 3 - Stack Overflow

    Nov 2, 2019 · Does this answer your question? Unable to install pygame on Python 3.8 via pip (Windows 10)

  10. Unable to install pygame on Python via pip (Windows 10)

    I had trouble using this with python3.8 Idle... if you want to install it in the right directory use: pip3 install pygame==2.0.0.dev6 ... or pygame will be installed in python 2.7 directory (at least on MacOS) …