A version of the classic snake game written in python.
To download the repoistory locally:
git clone https://github.com/DylanLi272/snake-game.git
cd snake-game
It is assumed that you have a version of Python >=3.0 already installed. Now set up a virtual environment and install the necessary packages:
python3 -m venv .venv
# activate virtual environment
python3 -m pip install -r requirements.txt
To run the game:
python snake-game.py
Note that the virtual environment needs to be active.