26 lines
289 B
Markdown
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
|
|
```
|
|
|