Have a look within the qt.conf file, it’s a simple ConfigFile format (i.e. a .ini file).
It should point to where the Qt binaries are; typically in your PyQt4 directory. If the paths are relative, and you move the file, then the resulting absolute paths will be bad. You can safely put in the absolute path to the binaries, just make sure to use forward slashes (/) and not backslashes (\) <http://doc.qt.io/qt-5/qsettings.html#section-and-key-syntax>. For example: [Paths]Prefix = C:/Python27/Lib/site-packages/PyQt4Binaries = C:/Python27/Lib/site-packages/PyQt4 Did you find out whether it were using a different executable? If it’s using the same as before, then this is likely not the problem. You can print the executable using sys.executable. It should tell you which one is currently being used. -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAFRtmOA_he0P-qQ40tqNkCSwCoy%3D_AJEdxs-hF0y6s66GAgCqQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
