Python Forum
Potentiostat/Galvanostat potential issue
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Potentiostat/Galvanostat potential issue
#10
It is possible. Some packages, like pyqtgraph, are set up to work with many versions of Qt. They look at your installed packages to find which version of Qt is installed.

I think you can circumvent this by changing the import order in your file. Import PySide6 before import pyqtgraph. Change this:
import pyqtgraph
from PySide6 import QtCore, QtGui, QtWidgets
to this:
from PySide6 import QtCore, QtGui, QtWidgets
import pyqtgraph
Reply


Messages In This Thread
RE: Potentiostat/Galvanostat potential issue - by deanhystad - Nov-05-2022, 11:54 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Is it possible to use the full potential of scalene in Pycharm? arnoldpredator 4 2,006 Nov-18-2023, 01:46 PM
Last Post: arnoldpredator
  Potential Permission error on Mac OSX Catalina OWOLLC 1 1,792 Nov-02-2023, 07:52 AM
Last Post: unjnsacih
  Potential confusion combining != with or Mark17 11 6,655 Nov-04-2019, 07:29 PM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020