README.md 288 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
# Ingame
A GUI for PortProton project.

## Run

Use the following commands in UNIX shell:

```shell
# Prepare and activate virtual environment
10 11 12
python -m pip install --user pipx
python -m pipx ensurepath
pipx install poetry
13 14

# Install requirements
15
poetry install
16 17

# Run
18
poetry run main
19
```