PyQt5分段故障(核心转储)

时间:2017-08-26 18:08:22

标签: python ubuntu pyqt5

我在Python 3.5中使用PyQt5。当我尝试导入from PyQt5 import QtGui Segmentation fault时出现。为什么会这样?

enter image description here

谢谢。

1 个答案:

答案 0 :(得分:0)

使用anaconda PyQt5时出现相同的错误

我通过

安装了PyQt5
conda install -c anaconda pyqt

结果:

>>> from PyQt5 import *
>>> from PyQt5.QtGui import *
Segmentation fault (core dumped)
解决方法:

pip install PyQt5

结果:

>>> from PyQt5 import *
>>> from PyQt5.QtGui import *
>>> from PyQt5 import QtGui
>>>