Reviving the Nokia's classic snake game using pygame
. Navigate, devour, and grow your snake in this addictive classic game.
-
Python 3.11 or higher
-
Git Bash (Optional)
Open cmd
or bash
in the project directory.
Install Python virtual environment
pip install virtualenv
Create a virtual environment
virtualenv env_name
Activate virtual environment
On Mac
and Linux
(Also if you are using bash
on Windows
)
source env_name/bin/activate
On Windows
(If you are using cmd
)
.\env_name\Scripts\activate
Install dependencies
pip install -r requirements.txt
python main.py