【Python 踩坑实录】Pycharm “... no Qt platform plugin could beinitialized...”及解决方案

文章目录

  • 一、背景
    • 1.问题出现
  • 二、尝试解决
  • 三、解决方法
    • 1.安装/重新安装Qt designer
    • 2.在Pycharm里进行配置
    • 看到最后了,欢迎点赞、收藏、关注三连!


一、背景

1.问题出现

由于电脑内存不足,前几天对电脑文件进行了整理。Anaoconda3 和 Pycharm占据了较大空间,在整理后发现Pycharm运行代码时会出现弹窗报错(下图),程序也无法继续运行。

“This application failed to start because no Qt platform plugin could beinitialized. Reinstalling the application may fix this problem.”

【Python 踩坑实录】Pycharm “... no Qt platform plugin could beinitialized...”及解决方案_第1张图片


二、尝试解决

在网上搜了好多资料,甚至打算重装Anaoconda3 和 Pycharm。在真正重装之前,有幸看到了这篇帖子:
python之pycharm安装Qt designer、PyUIC、Pyinstaller

三、解决方法

1.安装/重新安装Qt designer

1)打开cmd窗口,输入指令:pip install PyQt5
2)继续输入:pip install pyqt5-tools

2.在Pycharm里进行配置

1).打开pycharm ”File“ -> “Settings“

【Python 踩坑实录】Pycharm “... no Qt platform plugin could beinitialized...”及解决方案_第2张图片
【Python 踩坑实录】Pycharm “... no Qt platform plugin could beinitialized...”及解决方案_第3张图片
在上图Settings界面,选择"Tools"->“External Tools”,
点击右侧界面”+“号进行配置
“Program” 和 "Working directory"路径因人而异,须替换为自己的路径。
【Python 踩坑实录】Pycharm “... no Qt platform plugin could beinitialized...”及解决方案_第4张图片

按照上面的教程,我就做到这一步试了一下,代码可以正常运行,问题解决了。

看到最后了,欢迎点赞、收藏、关注三连!

你可能感兴趣的:(python,pycharm,qt,开发语言)