Howto install Python and Pygame

From Fingadowiki
Jump to: navigation, search

1. Go to https://www.python.org/

2. Download appropriate version (check processor) and install

-> Windows: Make sure you install python3.6 with the "Add python 3.x to PATH" option selected.


3. Install PyGame

Windows: py -m pip install pygame --user

MacOS 1: python3 -m pip install pygame --user

MacOS 2: python -m pip install pygame --user


4. Check

- Windows: py -m pygame.examples.aliens

- MacOS 1: python3 -m pygame.examples.aliens

- MacOS 2: python -m pygame.examples.aliens