7
0
Fork
You've already forked launcher
0
This is a PoC launcher based on MojoSetup (https://github.com/icculus/mojosetup)
  • Python 100%
Find a file
2026年04月15日 12:40:24 +00:00
core first commit 2026年04月15日 12:40:24 +00:00
screens first commit 2026年04月15日 12:40:24 +00:00
.gitignore first commit 2026年04月15日 12:40:24 +00:00
app.py first commit 2026年04月15日 12:40:24 +00:00
main.py first commit 2026年04月15日 12:40:24 +00:00
README first commit 2026年04月15日 12:40:24 +00:00
requirements.txt first commit 2026年04月15日 12:40:24 +00:00
unvmods.png first commit 2026年04月15日 12:40:24 +00:00

## To build, please follow these steps:
### Linux
```
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python -m PyInstaller --noconfirm --onefile --windowed main.py \
 --add-data "screens:screens" \
 --add-data "core:core"
deactivate
```
### Windows (CMD)
```
python -m venv .venv
.\.venv\Scripts\activate.bat
pip install -r requirements.txt
pip install pyinstaller
python -m PyInstaller --noconfirm --onefile --windowed main.py ^
 --add-data "screens;screens" ^
 --add-data "core;core"
deactivate
```
### MacOS
```
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python -m PyInstaller --noconfirm --onefile --windowed main.py \
 --add-data "screens:screens" \
 --add-data "core:core"
deactivate
```