This is a pygame project from scratch, doing this as a personal challenge to use my current skills. I also avoided existing "Space Invaders" tutorials, Instead, I focused solely on learning Pygame from the documentation or forums and exploring its functionality independently.
- python 3.10
- python virtualenv
pip install virtualenv
- create the python environment with virtualenv
python -m venv venv
- run the environment
# linux
source venv/bin/activate
# windows
venv\Script\activate
- then install python requirements
pip install -r requirements.txt
- finally run the main python file
python main.py
you need to run the virtual env first
python run_test.py