python install pygame code example

Example 1: install pygame

python3 -m pip install pygame <<<(mac)>>>
or
python -m pip install pygame <<<(windows)>>>
or
sudo apt install python3-pygame <<<(ubuntu)>>>

Example 2: install pygame

# on your terminal : 
pip install pygame 

# check if pygame run : 
py -m pygame.examples.aliens 
# if a window is open -> pygame is correctly installed

Example 3: how to install pygame

# on windows write in powershell:
pip install pygame

# on os write in terminal 
pip install pygame

Example 4: install pygame on mac

python3 -m pip install -U pygame==2.0.0.dev6

Example 5: how to install pygame in python

pip install pygame

Example 6: intall pygame

python3 -m pip install -U pygame --user
Wha?