+ 1
What are the steps to install pygame in python IDLE
Installing procedure
2 Answers
+ 3
If you already for python install, then open the cmd ( windows) or terminal (mac/linux) and type:
pip install pygame
If it doesn't work try pip3 or pip 3.8 or whatever version of python is installed on your device.
+ 3
Vaishuââ
If the command in Aymane Boukrouh 's answer says something like "pip is not recognised as an internal..."
(Only in widows... something like this never occured to me in Ubuntu)
you can use the command(for Windows)
py -m pip install pygame
Or
python -m pip install pygame