This is my rendition of the boot.dev Asteroids Project.
I have yet to make any modifications from how it is left in the course but plan on coming back to differentiate/finish the project.
The dependencies should be fairly easy to install. You will need to have Python 3.10+ installed on your machine.
If you already have this installed follow the steps below;
- creating a new folder on your machine to download the repo to.
- opening your terminal of choice and changing to the file or directory you created
- Setting up a virtual environment with
python3 -m venv venv
then runningsource venv/bin/activate
- Once inside this venv run
pip install -r requirements.txt
. - Finally to start the game run
python3 main.py
and enjoy!