Missing dll files when using pyinstaller

后端 未结 6 1657
醉酒成梦
醉酒成梦 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:29

    This may be more like a workaround and Pyinstaller might need fixing.

    I found out that --paths argument pointing to the directory containing Qt5Core.dll, Qt5Gui.dll, etc. helped

    pyinstaller --paths C:\Python35\Lib\site-packages\PyQt5\Qt\bin hello.py
    

提交回复
热议问题