Good day!
I\'m using python 3.5.2 with qt5, pyqt5 and sip14.8. I\'m also using the latest pyinstaller bracnch (3.3.dev0+g501ad40).
I\'m trying to create an e
Normally adding --Path
argument pointing directory containing unfound library solves the problem. There might be a problem if command string parsing if you are using PyInstaller 3.3dev. This generally happens if the path contains spaces. In such case, you can modify pathex
argument in .spec
file generated by PyInstaller and then run it with PyInstaller to build executable.
pyinstaller file_name.spec
Hopefully, this will be fixed soon.....