PyQt5
- 环境搭建
- 安装 pycharm
- 安装 PyQt5
- 打包成exe
- 安装 pyinstaller
- 打包
- 报错
- 进程已结束,退出代码-1073740791(0xC0000409)
环境搭建
安装 pycharm
安装 PyQt5
pip install pyqt5 -i https://pypi.tuna.tsinghua.edu.cn/simplepip install pyqt5-tools -i https://pypi.tuna.tsinghua.edu.cn/simplepip install pyqt5 -i https://pypi.tuna.tsinghua.edu.cn/simple
- 测试是否安装成功:输入如下内容,运行不报错
python -c "from PyQt5 import QtCore, QtGui, QtWidgets"
打包成exe
安装 pyinstaller
pip install pyinstaller -i https://pypi.tuna.tsinghua.edu.cn/simple
打包
pyinstaller --onefile --windowed --icon=lighting.ico QuickBoot.py ui_QuickBoot.py
报错
进程已结束,退出代码-1073740791(0xC0000409)
遇到这个问题首先打开pycharm,在运行中点击”编辑配置“,勾选”Emulate terminal in out console“,再次运行程序,就会看到新的报错内容,然后去搜索解决新的报错内容即可。