导入PyQt5时的RuntimeError

时间:2016-09-26 23:20:51

标签: python pyqt5

我现在正在学习PyQt5

当我尝试运行以下代码时

from PyQt5.QtWidgets import QApplication

我认识错误

Traceback (most recent call last):
File "<ipython-input-10-0ebe4054b7ae>", line 1, in <module>
from PyQt5.QtWidgets import QApplication
RuntimeError: the PyQt5.QtCore and PyQt4.QtCore modules both wrap the QObject class

那有什么不对?请求帮忙!

2 个答案:

答案 0 :(得分:0)

问题是Matplotlib使用QT5而你正在使用QT4。要解决这个问题,可以通过编辑matplotlibrc强制Matplotlib使用QT4,它位于\ Lib \ site-packages \ matplotlib \ mpl-data

就我而言,它是matplotlib enter image description here

答案 1 :(得分:0)

This解决了我的问题:

您可以转到“设置”>“构建,执行,部署>调试器> Python调试器> PyQt兼容:选择PyQt4。