Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 1.25 KB

README.md

File metadata and controls

46 lines (38 loc) · 1.25 KB

Summary

This is a game inspired by Space Invaders, an arcade video game designed by Tomohiro Nishikado and released in 1978, made in Python using pygame.

Play

# clone the game's repository
$ git clone https://github.com/obielwb/space-invaders.git

# cd into the game's directory
$ cd space-invaders

# create the game's virtual environment
$ python -m venv venv

# activate the game's virtual environment
$ source ./venv/bin/activate
# or
$ ./venv/Scripts/activate.bat

# install the game's required libraries
$ pip install -r requirements.txt

# cd into the pygame's directory
$ cd space-invaders

# launch the game
$ python game.py

Note: Python is required in order to run the game

References