Bootstrap

解决QT This application failed to start because no Qt platform plugin could be initialized. 问题

问题描述

This application failed to start because no Qt platform plugin could beinitialized. Reinstalling the application may fix this problem.
在这里插入图片描述

问题解决

遇到了这个问题,卡了蛮久的,也在网上找了很多方法,终于解决了!下面是我自己解决这个问题的过程,希望能够有参考价值,也是对自己解决这一过程的一点记录:

方法1. 重新安装pyqt5 和 pyqt5-tools

在cmd里面,首先卸载掉原来的模块:

pip uninstall pyqt5
pip uninstall qyqt5-tools

然后安装:

pip install pyqt5
pip install pyqt5-tools

要注意 pyqt5-tools 和 pyqt5 需要有版本对应,如果不对应的话,相关信息在pip install的结果会给出,只要跟着上面的安装对应版本就行,例如:

pip install pyqt5==版本号

方法2. 配置环境变量

进入环境变量ÿ

;