pyinstaller打包报错lib not found
使用pytinstaller打包命令:pyinstaller -F -w ***.py
打包过程中报 lib not found
运行程序报错: pyinstaller failed to execute script pyi_rth_qt5plugins
原因是打包命令找不到pyqt的路径,可以手工正定路径,命令中的...需要替换为你的python安装路径
pyinstaller --paths C:\...\Python35/Lib/site-packages/PyQt5/Qt/bin -F -w ccbd.py
分类: 技术