Snake game inspired from Slither.io but features a python instead of a Snake. Made in Python 3
To install this game follow these steps:
- Install the Python 3 Interpreter from here.
- Clone the repo.
- Run
python3 -m venv env
to create a new virtual environment and dosource env/bin/activate
on Mac and Linux. For windows, run theenv/Scripts/Activate.ps1
script. - Run
pip install -r requirements.txt
. - Run
python run.py
to finally start the game.
The controls are simple: left and right arrow keys for turning and up arrow key for boosting. You have to collect food and grow longer and longer. If you touch the edges, another player's tail, you die!