解决python打包成EXE文件不能执行的问题

使用pyinstaller将python打包成可执行文件出现问题,执行exe时显示没有PyQt5.sip
网上两个办法
1,在打包时 cmd里面 使用 pyinstaller C:\Users\Administrator\dist\Image2Text-master/main.py替换成pyinstaller –hidden-import PyQt5.sip C:\Users\Administrator\dist\Image2Text-master/main.py
2,卸载pyinstaller 使用pip uninstaller pyinstaller ,然后使用pip install https://github.com/pyinstaller/pyinstaller/archive/develop.zip

运行以后那个问题解决了又有新问题,显示找不到C:\Users\Administrator\dist\main\QCandyUi\candyUi\theme.json
回头看看生成的执行文件夹里没有QCandyUi这个文件夹,于是自己加了个文件夹然后把python里的theme.json添加进去就好了

你可能感兴趣的:(学习,python)