我刚刚安装了PyQtChart 5.7。但是在创建QChart对象时遇到了分段错误。我的代码非常简单。
from PyQt5.QtChart import QChart
chart = QChart()
我跑的时候
[1] 27902 segmentation fault (core dumped)
答案 0 :(得分:1)
你应该有一个QApplication
对象。
from PyQt5.QtChart import QChart
from PyQt5.Qt import QApplication
import sys
a = QApplication(sys.argv)
chart = QChart()
a.exec()