终于解决 This application failed to start because it could not find or load the Qt platform plugin "win

问题描述 :
This application failed to start because it could not find or load the Qt platform plugin "windows错误。
终于解决 This application failed to start because it could not find or load the Qt platform plugin

解决方法:
用PIP 安装 PyQt5 的第三方库即可。
我是用清华源安装的,因为Anaconda3里没有这个库,但是Pycharm又总是安装不下来,所以最后用了PIP安装。

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple PyQt5

具体过程:

  1. 打开 Anaconda Prompt
  2. 激活自己的环境 conda activate tf1xcpu(我的环境名称为 tf1xcpu)
  3. 安装 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple PyQt5

在这里插入图片描述
这个问题,我整了三天,其中的辛酸大家都深有体会。如果还不行的话,我就准备装QT的软件了。。。。

感觉对这个问题比较有用的网址:
http://www.luyixian.cn/news_show_4154.aspx
https://blog.csdn.net/weixin_42359147/article/details/81140640
https://blog.csdn.net/px41834/article/details/79383985(很详细)
https://blog.csdn.net/jzwong/article/details/71479691

你可能感兴趣的:(python)