This is a small personal project recreating the classical asteroids game (https://www.echalk.co.uk/amusements/Games/asteroidsClassic/ateroids.html)
To run it you need to have python 3.12.2 and do the following steps (This is for mac and linux, if you're using WSL on windows this should work from the WSL terminal):
-
Clone the repo
- git clone https://github.com/rouxru/asteroids.git
-
Create and activate a python virtual environment:
- python3 -m venv venv
- source venv/bin/activate
-
Install the required dependancies
- pip install -r requirements.txt
-
Run the main.py script
- python3 main.py