Getting started with Design Studio and PySide6
Unsolved
Qt Design Studio
-
Until now I've made my pyside6 apps with qtwidgets and want to start using a designer like QT Design Studio and Qt Quick instead.
After creating a new project, bootstrapping the
main.qml
withQQmlApplicationEngine()
and running it aspython main.py
, it results in errors like "module 'content' is not installed". Seeing how imports are already handled in the qml files and it not being able to find it means it must not be compatible directly with PySide6.Are there any guides or articles that work out a basic working example to get started with using QT Design Studio (Qt Quick) projects with PySide6?
-
-