Files
pysteroids/readme.md
2025-05-09 17:02:10 +02:00

26 lines
289 B
Markdown

Needs Python 3
Activate virtual environment:
```bash
python3 -m venv venv
```
Enter virtual environment:
```bash
#bash
source venv/bin/activate
#fish
source venv/bin/activate.fish
```
Install pygame:
```bash
pip install -r requirements.txt
```
Start game:
```bash
python3 main.py
```