Skip to content

Commit 1d23016

Browse files
committed
🐛 add st_aggrid as it is imported, not installed
import st_aggrid but pip install streamlit-aggrid it is a "hidden" import as the main script is not using it (as pyvis or streamlit itself)
1 parent 0c1d279 commit 1d23016

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

executables/README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@
33
- pyvis templates were not copied, so make these explicit (see [this](https://stackoverflow.com/a/72687433/9684872))
44

55
```bash
6-
# from root of the project
7-
pyinstaller -D --collect-all pyvis -n vuegen src/vuegen/__main__.py
86
# from this README folder
9-
pyinstaller -D --collect-all pyvis --collect-all streamlit -n vuegen ../src/vuegen/__main__.py
7+
pyinstaller -D --collect-all pyvis --collect-all streamlit --collect-all st_aggrid -n vuegen ../src/vuegen/__main__.py
8+
```
9+
10+
```bash
11+
# other pyinstaller options
12+
--noconfirm # is used to avoid the prompt for overwriting the existing dist folder
1013
```
1114

1215
## Pyinstaller options

0 commit comments

Comments
 (0)