Can Qt Creator create PyQt project?
Solved
Qt for Python
-
@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. -
@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. -