Skip to content

A simple implementation of Conway's Game of Life using Python

Notifications You must be signed in to change notification settings

soda480/game-of-life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

game-of-life

python PyPI version

A simple implementation of Conway's Game of Life using Python. Uses ascii-animator to animate the game to the terminal.

Install

pip install game-of-life-animation

Execute

game-of-life

example

Development

python -m pip install --upgrade build
python -m build

Execution using Docker image

docker container run --rm -it soda480/game-of-life:latest

Execution using locally built Docker image

Clone this repository to your machine, then change directory to the directory where the repository was cloned.

Build Docker Image:

docker image build -t game-of-life:latest .

Run Docker Container:

docker container run --rm -t game-of-life:latest