This is a simple game of snake using PyGame. The purpose of the project is not to make a game, but rather, to have a codebase to as learning project for the Git Workshop organized at the Ostschweizer Fachhochschule in Rapperswil.
To run the game you need python 3.9 or higher and pygame
, optionally you can
use poetry for dependency management. Without
poetry you can use a simmple a virtual environment
$ python3 -m venv venv
$ source venv/bin/activate # on windows: venv\Scripts\activate
$ python3 -m pip install pygame
$ python3 -m snake