Skip to content

Commit d5e344d

Browse files
committed
🚚🔥 remove cli exectuable for GUI bundle only
- 🚚 move some hints to GUI README
1 parent 29d1d41 commit d5e344d

File tree

3 files changed

+22
-94
lines changed

3 files changed

+22
-94
lines changed

executables/README.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

executables/vuegen.spec

Lines changed: 0 additions & 55 deletions
This file was deleted.

gui/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,25 @@ pyinstaller \
3838
--add-data ../docs/example_data/Basic_example_vuegen_demo_notebook:example_data/Basic_example_vuegen_demo_notebook \
3939
app.py
4040
```
41+
42+
- pyvis templates were not copied, so make these explicit (see [this](https://stackoverflow.com/a/72687433/9684872))
43+
- same for streamlit, customtkinter and st_aggrid
44+
- might be copying too much, but for now we go the safe route
45+
46+
## relevant Pyinstaller options
47+
48+
```bash
49+
What to generate:
50+
-D, --onedir Create a one-folder bundle containing an executable (default)
51+
-F, --onefile Create a one-file bundled executable.
52+
--specpath DIR Folder to store the generated spec file (default: current directory)
53+
-n NAME, --name NAME Name to assign to the bundled app and spec file (default: first script's basename)
54+
Windows and macOS specific options:
55+
-c, --console, --nowindowed
56+
Open a console window for standard i/o (default). On Windows this option has no effect if the first script is a
57+
'.pyw' file.
58+
-w, --windowed, --noconsole
59+
Windows and macOS: do not provide a console window for standard i/o. On macOS this also triggers building a
60+
macOS .app bundle. On Windows this option is automatically set if the first script is a '.pyw' file. This option
61+
is ignored on *NIX systems.
62+
```

0 commit comments

Comments
 (0)