A snake game in Python
- To get started, clone the repository using:
git clone https://github.com/odavhad/snake-game.git
- Navigate to the repository directory using your terminal/ command prompt
- Run the following commands
For macOS/ LinuxFor windowspython3 -m venv venv source venv/bin/activate pip install -r requirements.txt
python3 -m venv venv venv\Scripts\activate.bat pip install -r requirements.txt
- The virtual environment setup is completed, now run the 'game.py' file using:
python game.py