Hi Tony,
I found this from an old support ticket. Hope it works for you.
you can manually do this with little effort.
From the resources folder in the tk-multi-starterapp
you can run the commands:
> pyside-uic.exe --from-imports dialog.ui > ../python/app/ui/dialog.py
> pyside-rcc.exe resources.qrc > ../python/app/ui/resources_rc.py
(or similar) on your system. Then manually go into your python/app/ui/dialog.py
and change this:
from PySide import QtCore, QtGui
to this:
from tank.platform.qt import QtCore, QtGui
and in python/app/ui/resources_rc.py
change:
from PySide import QtCore
to
from tank.platform.qt import
If you can’t find pyside-uic.exe
on your system, ensure your have instaled PySide and look in your Python installation’s Scripts\
directory or Lib\site-packages\PySide
directory (eg. C:\Python27\Scripts\pyside-uic.exe
or C:\Python27\Lib\site-packages\PySide\pyside-rcc.exe`)
Cheers
Loney