- Clone or download this repo.
- Open a terminal in the project folder.
- Create a venv:
On Windows: py -3.13 -m venv .venv On Linux/macOS: py3 -3.13 -m venv .venv
-
Activate the venv:
On Windows: .venv\Scripts\activate On Linux/macOS: source .venv/bin/activate Note: if you're getting an error on Windows, do Set-ExecutionPolicy Unrestricted in PowerShell, and press A and enter.
Now you should have a (.venv) prefix on the command line.
-
Install pygame: On Windows: pip install pygame On Linux/macOS: pip3 install pygame
-
Run it: On Windows: python main.py On Linux/macOS: python3 main.py