Game of life in python standard library and numpy
Game of life implementation in the python standard library and numpy
git clone https://github.com/hogum/game-of-life
Switch to the working directory
cd game-of-life
Starting the Game
numpy
installed: pip install -r requirements.txt
or simply pip install numpy
Required Python version: > 3.7
. For versions below 3.7, install python dataclasses
first with pip3 install dataclasses
as it won’t be in the std lib.
Then start the game with:
python3 run
pytest
Either
python3 setup.py install
Ensure to have the config.json
in the root of the repository
and a data folder holdind the game patterns in the path: game_of_life/.data/*
Or
pip install game-of-life-MUGOH==0.0.11