我面临一个奇怪的问题。我已经在PyCharm项目的虚拟环境中下载并安装了Qt for Python库(PySide2)。我使用Qt Designer和Im加载(.ui文件)创建了一个虚拟GUI,并通过我的python代码显示了GUI。每当我运行代码时,我都可以看到没有错误的GUI。但是,每当调试代码时,都会出现错误:
文件“ ... \ gui_pyside2.py”,第5行,位于
from PySide2.QtWidgets import QApplication, QLabel, QLineEdit
导入错误:DLL加载失败:找不到指定的过程。
Pydev在此行崩溃:
#execute the script (note: it's important to compile first to have the filename set in debug mode)
exec(compile(contents+"\n", file, 'exec'), glob, loc)
我完全迷失了可能的原因。似乎pydev正在干扰导入?我尝试使用导入语句而不是从导入中导入,但是问题仍然存在。有什么想法吗?
已安装的版本: