Missing dll files when using pyinstaller

后端 未结 6 1647
醉酒成梦
醉酒成梦 2020-12-18 00:02

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

6条回答
  •  天涯浪人
    2020-12-18 00:42

    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.....

提交回复
热议问题