File tree Expand file tree Collapse file tree 3 files changed +22
-94
lines changed Expand file tree Collapse file tree 3 files changed +22
-94
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff 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 \
3939app.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+ ```
You can’t perform that action at this time.
0 commit comments