Install Homebrew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Reload your environment (or just restart your terminal):
exec zsh
Add brew
to your path:
echo 'eval $(/opt/homebrew/bin/brew shellenv)' >> ~/.zshrc
Install pyenv and virtualenv:
brew install pyenv pyenv-virtualenv
Initialize pyenv in your shell:
echo 'eval $(pyenv init -)' >> ~/.zshrc
echo 'eval $(pyenv virtualenv-init -)' >> ~/.zshrc
Reload your environment (or just restart your terminal):
exec zsh
Set up the environment:
make venv
Play the game:
make play
Feel free to. I think you can probably figure out how