Lesson 2 - Install Pygame

After Python 3 is installed on our computers, next we need to install the module known as Pygame. Modules are basically a bunch of files containing functions, definitions, and statements. By installing modules, we can use them in our Python scripts. Pygame is an awesome module that provides a number of useful functions for creating video games, or in our case, monkey programs.

 

For more information visit: https://www.pygame.org/news

Note: You NEED Internet access to install modules!

Installing Pygame on Windows 10/11

Command Prompt

>>> pip install pygame

 

>>> import pygame