Python Forum
Potentiostat/Galvanostat potential issue
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Potentiostat/Galvanostat potential issue
#11
(Nov-05-2022, 11:54 AM)deanhystad Wrote: 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

BINGO!!! The code works now perfectly. No even single error. I still encounter issue with setting "potential" so it has to be hardware problem. Now I am heading to dissasemble all electronic parts to test everything and hopefully find a bad circuit.

Thank You so much for Your time!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Potential Permission error on Mac OSX Catalina OWOLLC 2 1,930 Apr-24-2025, 04:45 AM
Last Post: TomBrooks
  Is it possible to use the full potential of scalene in Pycharm? arnoldpredator 4 2,073 Nov-18-2023, 01:46 PM
Last Post: arnoldpredator
  Potential confusion combining != with or Mark17 11 6,717 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