6 lines
103 B
Batchfile
6 lines
103 B
Batchfile
|
|
@echo off
|
||
|
|
REM Launch the Flet GUI. Requires `pip install flet>=0.85`.
|
||
|
|
pushd "%~dp0"
|
||
|
|
python -m gui
|
||
|
|
popd
|