pyqtgraph requires Qt version >= 5.12

2.3k Views Asked by At

I'am trying to plot in real time EEG data but I face some issues due to the use of pyqtgraph.

I've already try to upgrade pyside2 and shiboken2, to uninstall and install again, but it always end up the same way..

from pyqtgraph.Qt import QtGui, QtCore
Exception: pyqtgraph requires Qt version >= 5.12  (your version is 5.9.7)

Does anyone know how should I solve that ?

Best, K

2

There are 2 best solutions below

1
On

Just this cmd can help!

pip install pyqt5
0
On

Try pip install pyqt5==5.12 for updating your Qt version.