PyQt4 script frozen by PyInstaller gives Fatal Error:"Failed to execute script xyz"
I solved my issue using --noupx
when I use pyinstaller. [PyQt5-Python 3.4]
Example;
pyinstaller.exe --onefile --windowed --noupx --icon=app.ico myapp.py
Check this if the codes above doesn't solve your problem.