A clone of the classic space invaders game made in Python with pygame to practice my skills.
-
Clone it and cd into it
git clone https://github.com/itskatt/space-invaders-clone cd space-invaders-clone -
Setup an virtual environement (optional) This allows you to safely install the game's dependencies, without interfearing with your other projects.
# create it python -m venv env # activate it source env/bin/activate # unix (bash) env\bin\activate.bat # windows (cmd.exe) # see https://docs.python.org/fr/3/library/venv.html for more info
-
Install the dependencies
python -m pip install -r requirements.txt
-
Run the game
python run.py