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 d35031b commit 41cdd53Copy full SHA for 41cdd53
executables/README.md
@@ -1,6 +1,8 @@
1
# Pyinstaller one folder executable
2
3
+- pyvis templates were not copied, so make these explicit (see [this](https://stackoverflow.com/a/72687433/9684872))
4
+
5
```
6
# from root of the project
-pyinstaller -name vuegen src/vuegen/__main__.py
7
+pyinstaller -D -w --collect-all pyvis -n vuegen src/vuegen/__main__.py
8
executables/vuegen.spec
@@ -4,6 +4,8 @@ from PyInstaller.utils.hooks import collect_all
datas = []
binaries = []
hiddenimports = []
+tmp_ret = collect_all('pyvis')
+datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2]
9
10
a = Analysis(
11
['src/vuegen/__main__.py'],
0 commit comments