Hi, pyqtgraph should run with PyQt5 only. The dependency is just in the package file, not in pyqtgraph itself. You have to install it manually (the last option on this page: http://www.pyqtgraph.org/documentation/installation.html ). Either download and extract the .tar.gz from the main page, or check out the source code from the git repository (https://github.com/pyqtgraph/pyqtgraph). Then run “python setup.py install” in the directory.
I haven't tried to use it with PyQt5 only, but if it doesn't recognize the PyQt installation, try to force the Qt library setting *before *importing pyqtgraph with: import os os.environ['PYQTGRAPH_QT_LIB'] = 'PyQt5' Cheers Sebastian Am Mittwoch, 26. April 2017 16:25:39 UTC+2 schrieb [email protected]: > > Hi, I'm building a system on a Beagle bone black running Debian GNU/Linux > 8 (jessie). > I have python3-pyqt5 installed. > > Is it possible to install PyqtGraph without PYQT4.? > > I have tried to install python-pyqtgraph_0.10.0-1_all > <http://www.pyqtgraph.org/downloads/0.10.0/pyqtgraph-0.10.0-deb/python-pyqtgraph_0.10.0-1_all.deb>.deb > > but complains about python-qt4 . > > Which is the best way to install PyqtGraph in my system?There is any guide > to follow? > > Thanks > > > -- You received this message because you are subscribed to the Google Groups "pyqtgraph" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyqtgraph/248f7fa3-a76b-4d79-b069-3f162d81783c%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
