On 2013-07-20, Aseem Bansal <asmbans...@gmail.com> wrote: > Do I need to use QtCreator with PySide if I want drag-and-drop > feature for GUI development?
No, you just need the layout part of QtCreator, called QtDesigner, and any decent Python editor or IDE (e.g. Idle): http://wiki.python.org/moin/IntegratedDevelopmentEnvironments There's another Qt IDE that uses QtDesigner called Monkey Studio (seems to be PyQt only). Designers can be really nice for learning the toolkit widgets and layout, but I'd like to get away from them in my own projects, actually, and move to something like enaml: http://docs.enthought.com/enaml/ > Do I need to install Qt? If yes, which version - 4.8 or 5.1? PySide does not support 5.x yet, according to their website. I installed the PySide windows download, and it seems to work without needing any Qt packages. > Can I use cxfreeze to make exe files from the GUI developed? Probably. We use py2exe for our wxPython/numpy application. Depending on the complexity and number of external modules used by your application, bundling tools like this can require some google-fu and trial and error to get working. http://qt-project.org/wiki/Packaging_PySide_applications_on_Windows Dave Cook -- http://mail.python.org/mailman/listinfo/python-list