PyQt Designer

I see in latest Maya that Qt Designer comes pre-installed. However, I can’t find out for the life of me where to find it in Maya or where it is installed. Anyone have an idea? I guess I can just resort to downloading it separately.

maya/bin/designer.exe

LOL thx. #SMH for looking in bin for something starting with QT… I shoulda known.

Ok, so totally different issue… but still related. I am trying to go through some PyQT tutorials and something simple as this is failing. Why would this be failing if PyQt4 comes prepackaged with Maya 2015? Just running this in the script editor:

import PyQt4.QtCore as qc
import PyQt4.QtGui as qg

dialog = qg.QDialog()
dialog.show()

Gives me this:

Error: ImportError: file <maya console> line 1: No module named PyQt4.QtCore

If you are in Maya 2015 or 2016, you should be importing PySide, not PyQt4. Just replace “PyQt4” with “PySide” in your example, and you should be good to go.

Edit: This is because PySide is included with Maya, not PyQt.