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:
- Install and use Python 3.8, then
pip install pygame
should work. - Install the Pygame 2 development version,
pip install pygame==2.0.0.dev14
, orpip install pygame --pre
to obtain the latest pre-release version. - 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"