Devoxx4Kids Arcade Workshop for WOMAD 2024
You can find the presentation slides use here.
If you would like help, please open up a GitHub Issue, or email [email protected] and we'll try to point you in the right direction.
- Install
Python 3.8
(not the latest)
- See
Installing Python
below
- Install
Pygame Zero
pip install pgzero
There are many ways to install Python 3.8.
You can check which version of Python you have with python --version
.
Visit https://www.python.org/downloads/release/python-380/ for instructions (files are at the bottom).
brew update
brew install pyenv
# Follow: https://github.com/pyenv/pyenv?tab=readme-ov-file#set-up-your-shell-environment-for-pyenv
pyenv install --list # check pyenv is working
pyenv install -v 3.8 # install the latest 3.8 version (3.8.19 at the time of writing)
pyenv local 3.8 # use this version whenever in this directory tree