Skip to content

Commit 3ee9a55

Browse files
committed
✨ add basic GUI command
- creates relative large executable (740 MB)
1 parent 1fa37c8 commit 3ee9a55

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

gui/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,22 @@ Can be started locally with
1818
# from within gui directory
1919
python app.py
2020
```
21+
22+
## Build executable GUI
23+
24+
For now do not add the `--windowed` option, as it will not show the console output,
25+
which is useful for debugging and especially terminating any running processes, e.g.
26+
as the streamlit server and the GUI itself.
27+
28+
```bash
29+
# from this README folder
30+
pyinstaller \
31+
-n vuegen_gui \
32+
--no-confirm \
33+
--onedir \
34+
--collect-all pyvis \
35+
--collect-all streamlit \
36+
--collect-all st_aggrid \
37+
--collect-all customtkinter \
38+
app.py
39+
```

0 commit comments

Comments
 (0)