我想将PyQtGraph PlotWidget实现到PySide2应用程序中。使用PyQt5一切正常。使用PySide2,我得到底部显示的错误。我已经发现,有一些工作正在进行中,但似乎有一些人设法让这个工作。但是,我还没有。我使用的是Pyqtgraph 0.10,而不是开发人员分支。我要改变吗?我需要做什么?
from PySide2.QtWidgets import QApplication, QMainWindow, QGraphicsView, QVBoxLayout, QWidget
import sys
import pyqtgraph as pg
class WdgPlot(QWidget):
def __init__(self, parent=None):
super(WdgPlot, self).__init__(parent)
self.layout = QVBoxLayout(self)
self.pw = pg.PlotWidget(self)
self.pw.plot([1,2,3,4])
self.pw.show()
self.layout.addWidget(self.pw)
self.setLayout(self.layout)
if __name__ == '__main__':
app = QApplication(sys.argv)
w = WdgPlot()
w.show()
sys.exit(app.exec_())
错误:
QtGui.QGraphicsView.__init__(self, parent)
TypeError: arguments did not match any overloaded call:
QGraphicsView(parent: QWidget = None): argument 1 has unexpected type 'WdgPlot'
QGraphicsView(QGraphicsScene, parent: QWidget = None): argument 1 has unexpected type 'WdgPlot'
Traceback (most recent call last):
在pyqtgraph的稳定分支中,甚至不支持PySide2,因此它导入必须属于PyQt4或PySide的QtGui.QGraphicsView,因为在PyQt5和PySide2中,QGraphicsView属于子模块QtWidgets而不是QtGui。
在开发分支中,正在实现PySide2支持,因此如果要使用PySide2,则必须使用以下命令手动安装它(必须首先卸载已安装的pyqtgraph):
git clone -b develop [email protected]:pyqtgraph/pyqtgraph.git
sudo python setup.py install
然后你可以使用:
from PySide2 import QtWidgets
import pyqtgraph as pg
class WdgPlot(QtWidgets.QWidget):
def __init__(self, parent=None):
super(WdgPlot, self).__init__(parent)
layout = QtWidgets.QVBoxLayout(self)
pw = pg.PlotWidget()
pw.plot([1,2,3,4])
layout.addWidget(pw)
if __name__ == '__main__':
import sys
app = QtWidgets.QApplication(sys.argv)
w = WdgPlot()
w.show()
sys.exit(app.exec_())
更多信息:
对于任何其他人使用Point获得错误 - 我从'PySide2.QtCore导入QPoint'手动导入到文件中给我一个错误并将Point更改为QPoint。没有官方的东西,但现在修复它。