Implementation of Conway's "Game Of Life" in less than 100 lines of modern Python.
It is recommend using the latest version of Python (3.9) on a separate virtual environment to your normal development one. Create a new environment for this game and install the dependencies with:
python -m venv venv
. venv/bin/activate
pip install -r requirements.txt
Given that all the dependencies were installed, running the game is as simple as
python pygame_life.py