We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fa37c8 commit 3ee9a55Copy full SHA for 3ee9a55
gui/README.md
@@ -18,3 +18,22 @@ Can be started locally with
18
# from within gui directory
19
python app.py
20
```
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