Can Qt Creator create PyQt project?
-
wrote on 9 Oct 2024, 02:06 last edited by
-
I use Qt Creator to create py project, there is only PySide for choosing.
How to create PyQt project by Qt Creator?
wrote on 9 Oct 2024, 03:28 last edited by@markleo said in Can Qt Creator create PyQt project?:
I use Qt Creator to create py project, there is only PySide for choosing.
As you might have noticed, there are two major Qt Python wrapper libraries: PySide and PyQt.
PySide is officially developed and maintained by TQtC, whereas PyQt is not.
Therefore there is no project template for PyQt available in QtCreator. -
I use Qt Creator to create py project, there is only PySide for choosing.
How to create PyQt project by Qt Creator?
wrote on 9 Oct 2024, 07:13 last edited by@markleo
As @Pl45m4 has said. PyQt and PySide are so similar that there is no reason why you should not create a PySide project and then just substitutePyQt
forPySide
everywhere it occurs. Plus project templates are really only a couple of files and lines of code, once you've seen one you are not missing out if you just write/copy in the few lines. -
1/3