-
-
Notifications
You must be signed in to change notification settings - Fork 108
Pyinstaller troubleshooting
ThePromidius edited this page Feb 12, 2024
·
2 revisions
hiddenimports = ["FMD3","PIL.ImageFont","PIL.ImageDraw"]
If using spec file:
from PyInstaller.utils.hooks import collect_all
datas = []
binaries=[]
collects = [collect_all('tkinterweb'), collect_all('pygubu')]
for ret in collects:
datas += ret[0]
binaries += ret[1]
hiddenimports += ret[2]
(Will be updated with more info. just wanted to note it as i'm troubleshooting)
- Requirements
- Installation
- Launch
- Screens:
- Step-by-Step Examples:
- Completed Examples
- Tips
- Additional widget sets
- Known Issues
- FAQ
- Troubleshooting:
- Communicating: