This repository is an implementation of Game of Life following the video called Conway's Game of Life in Python of NeuralNine.
To create a conda environment, you have to use the command:
conda env create -f environment.yml
To activate the environment, use the following command:
conda activate game-of-life
Finally, to add kernel to Jupyter, you have to use ipykernel
as follow:
python -m ipykernel install --user --name game-of-life --display-name "Python (game-of-life)"
Tu run pylint
, please use the following command:
# pylint <path>
pylint src/