How do I download QtDesigner for PyQt6? If there's no QtDesigner for PyQt6, I can also use QtDesigner of PyQt5, but how do I convert this .ui file to .py file which uses PyQt6 library instead of PyQt5?
Asked
Active
Viewed 1.3k times
2 Answers
9
As they point out you can use pyuic6:
pyuic6 -o output.py -x input.ui
but in some cases there are problems in that the command is not found in the CMD/console, so the command can be used through python:
python -m PyQt6.uic.pyuic -o output.py -x input.ui

eyllanesc
- 235,170
- 19
- 170
- 241