https://github.com/amssdias/python-space-invader
Space Invader Game
https://github.com/amssdias/python-space-invader
pygame python3
Last synced: 3 months ago
JSON representation
Space Invader Game
- Host: GitHub
- URL: https://github.com/amssdias/python-space-invader
- Owner: amssdias
- Created: 2021-05-04T10:14:54.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-06T13:39:25.000Z (about 4 years ago)
- Last Synced: 2025-01-13T19:24:36.225Z (5 months ago)
- Topics: pygame, python3
- Language: Python
- Homepage:
- Size: 234 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Space Invader
Space Invaders is a 1978 arcade game created by Tomohiro Nishikado. Within the shooter genre, Space Invaders was the first fixed shooter and set the template for the shoot ’em up genre. The goal is to defeat wave after wave of descending aliens with a horizontally moving laser to earn as many points as possible.
## Pre requisites
- [Python](https://www.python.org/downloads/) - 3.8.4 or up
### Pipfile and Pipfile.Lock
Inside the Pipfile there's all the modules name needed for the project.
Download Pipenv through the terminal window (make sure you have Python installed), just type `pip install pipenv`.After installing pipenv all you have to do is to download the files and in the terminal window, got to the folder with these files and run `pipenv install` and automatically will install this modules.
This will create a virtual environment with the module `pygame`.
To run this virtual environment all you must do is run `pipenv shell` and to close the virtual environment `exit`.
If any doubts here's a link to some more explanations:
- [Pipenv](https://pipenv-fork.readthedocs.io/en/latest/basics.html)
## Run
- Download the project, open terminal window on folder with 'main.py' and type:
```
python main.py
```