Skip to content Skip to sidebar Skip to footer

Installing Pygame Though Pip But I Keep Getting An Error

I am trying to install pygame on windows 10 using pip. I am using python 3. I keep getting this error when I run pip install pygame: Collecting pygame Using cached pygame-1.9.6.t

Solution 1:

From your error logs, you're using Python 3.9. The current Pygame release, 1.9.6 doesn't support Python 3.9. You have several options:

  1. Install and use Python 3.8, then pip install pygame should work.
  2. Install the Pygame 2 development version, pip install pygame==2.0.0.dev14, or pip install pygame --pre to obtain the latest pre-release version.
  3. Try a third party pygame wheel from Christoph Gohlke, he offers pygame 1.9.6 linked against cpython39.

Post a Comment for "Installing Pygame Though Pip But I Keep Getting An Error"