Piway's Game of Life is a Raspberry Pi-developed cellular automaton Conway's Game of Life-style game made in Python using pygame. Therefore, graphics and visual resources are at their minimum, extracting the most performance from the computer.
# clone the game's repository
$ git clone https://github.com/ojpbarbosa/piway.git
# cd into the game's directory
$ cd piway
# create the game's virtual environment
$ python -m venv --prompt piway .venv
# activate the game's virtual environment
$ source ./.venv/bin/activate
# or
$ ./.venv/Scripts/activate.bat
# install the game's required libraries
$ pip install -r requirements.txt
# launch the game
$ python ./piway/main.py