Hi Jeff,

This isn't a pyqtgraph issue, but a difference in the namespace that
PyQt[5|6] have vs. PySide bindings.  If you want to use the PyQt5
namespace, you have to import it as such

>>> from PyQt5.QtCore import pyqtSignal
>>>

Qt abstraction libraries such as QtPy and such will rename it to Signal
(from QtPy.QtCore import Signal) and in pyqtgraph's built-in abstraction
layer (which you can use for your projects, but we generally do not
recommend as we do not offer anywhere near the same level of coverage as
AnyQt or QtPy) it would be from pyqtgraph.Qt.QtCore import Signal

Hope that helps.
Ogi

On Wed, Dec 8, 2021 at 9:46 AM Jeff Grasty <[email protected]> wrote:

>
> Hi,
>
> I am trying to run the examples but keep getting following error:
>
> 'PyQt5.QtCore' has no attribute 'Signal'
>
> I am  using anaconda for my environment and have following packages and
> versions installed:
>
>    - pip:
>
>      - pyqt5==5.15.6
>
>      - pyqt5-qt5==5.15.2
>
>      - pyqt5-sip==12.9.0
>
>      - pyqtgraph==0.12.2
>
> Any help would be greatly appreciated.
>
> Thanks,
> Jeff
>
> --
> 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/986b2d3b-df65-4033-a0fa-960b3b361dadn%40googlegroups.com
> <https://groups.google.com/d/msgid/pyqtgraph/986b2d3b-df65-4033-a0fa-960b3b361dadn%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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/CA%2BnduTGrg8j0vFYZ%3Di9E_-ozq6J-mv0PkaydWtooDOhkMcxvRw%40mail.gmail.com.

Reply via email to