Conway's Game of Life in your terminal, to accompany the Real Python tutorial Build Conway's Game of Life With Python.
- Create and activate a Python virtual environment:
$ python -m venv ./venv
$ source venv/bin/activate
(venv) $
- Install
rplife
in editable mode:
(venv) $ cd rplife
(venv) $ pip install -e .
To execute rplife
, go ahead and run the following command:
(venv) $ rplife -a
Real Python - Email: office@realpython.com
Distributed under the MIT license. See LICENSE
for more information.