X Tutup
Skip to content

Latest commit

 

History

History
 
 

README.md

rplife

Conway's Game of Life in your terminal, to accompany the Real Python tutorial Build Conway's Game of Life With Python.

Installation

  1. Create and activate a Python virtual environment:
$ python -m venv ./venv
$ source venv/bin/activate
(venv) $
  1. Install rplife in editable mode:
(venv) $ cd rplife
(venv) $ pip install -e .

Execution

To execute rplife, go ahead and run the following command:

(venv) $ rplife -a

Author

Real Python - Email: office@realpython.com

License

Distributed under the MIT license. See LICENSE for more information.

X Tutup