why are several of my pyside6 modules not working?
-
Hi and welcome to devnet,
What exactly did you install ?
All the class you are saying works comes from the qtbase module.
-
Hi and welcome to devnet,
What exactly did you install ?
All the class you are saying works comes from the qtbase module.
-
Recent versions of PySide6 have been split because of the size of the modules. So again: what exactly did you install and how ?
-
Recent versions of PySide6 have been split because of the size of the modules. So again: what exactly did you install and how ?
-
Ok, this looks good. Can you check that you have the PySide6-Addons package properly installed ?
-
Ok, this looks good. Can you check that you have the PySide6-Addons package properly installed ?
-
Just to be sure, can you provide a minimal script that shows the issue so we ensure that we are trying the same things ?
-
Just to be sure, can you provide a minimal script that shows the issue so we ensure that we are trying the same things ?
I just tested with
from PySide6.QtDataVisualization import Q3DBars
on a fresh install of PySide6 with Python 3.10.4 on macOS and it worked correctly. I then tried all the modules that you listed with a star import and they all loaded as expected.Are you using a virtual environment for your
-
I just tested with
from PySide6.QtDataVisualization import Q3DBars
on a fresh install of PySide6 with Python 3.10.4 on macOS and it worked correctly. I then tried all the modules that you listed with a star import and they all loaded as expected.Are you using a virtual environment for your
@SGaist I am not using a virtual environment.
When I look at the imports in VSCode, they look fine. But when I run the program, it gives me the error. I am using python 3.11.4.
I downloaded and ran this program:
https://doc.qt.io/qtforpython-6/examples/example_datavisualization_bars3d.html