Welcome to Console Game of Life! Download the terminal-based version of the classic Game of Life and enjoy the simulation right in your command line.
Run the following command. Click here to copy
mkdir cgol_install_temp && cd cgol_install_temp && wget -O installer.sh https://consolegameoflife.com/installer/linux && chmod +x installer.sh && ./installer.sh && cd .. && rm -rf cgol_install_temp The command will download the installer and run the installer
For windows you will have to add it to your path environment variable
Download the program
wget -O cgol https://consolegameoflife.com/download/linux Then we make it executable
chmod +x cgol Finally we run the application
./cgolDownload the program, open terminal and type
wget -O cgol.exe https://consolegameoflife.com/download/win Run the application
start cgol.exeClone the repository
git clone https://github.com/r59q/console-game-of-life.git Enter the new folder with the repository
cd console-game-of-life Build the project
cargo build --release Run it
(Linux)
./target/release/conways-game-of-life (Windows)
start ./target/release/conways-game-of-life.exe