pygame pip install 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: how to setup pygame
import pygame
import sys
pygame.init()
clock = pygame.time.Clock()
FPS = 30
screen_width = 600
screen_height = 600
screen = pygame.display.set_mode((screen_width, screen_height))
while True:
clock.tick(FPS)
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()
Example 3: install pygame
pip install pygame
py -m pygame.examples.aliens
Example 4: how to install pygame
pip install pygame
pip install pygame
Example 5: how to install pygame in python
pip install pygame
Example 6: pip install pygame
py -m pip install -U pygame --user