Does anyone know of any GUI designer for python like Glade but for windows?
Asked
Active
Viewed 1,227 times
6
-
Duplicate: http://stackoverflow.com/questions/64971/what-is-the-best-wysiwyg-gui-editor-for-python – S.Lott Feb 18 '09 at 15:01
6 Answers
13
Glade/Gtk+ for Windows is exactly like Glade but for Windows.

joeforker
- 40,459
- 37
- 151
- 246
-
I have just downloaded Glade but I suppose that I need to install it as a plugin for PyCharm in order to use it. However, only *.jar and *.zip files can be used as plugins but there seems not to be any such file in the Glade installation. So what should I do now? – Dominique Mar 30 '16 at 14:47
4
I would suggest using PyQt and the Qt-designer(WYSIWYG gui designer) for making cross platform gui apps.
Qt has even gone LGPL, making it even more attractive.
You can find PyQt at: http://www.riverbankcomputing.co.uk/software/pyqt/download

Nailer
- 2,446
- 1
- 24
- 34
-
1Until PyQt goes LGPL, it doesn't matter what license Qt has if you hate freedom and want to write non-GPL programs. – joeforker Feb 18 '09 at 14:40
-
2
I use PyQt; it is built on the QT Toolkit.
If you are deploying to Windows, it works well with the py2exe module.
It's fairly straightforward to use, especially if you already have experience with the QT libraries.
Note: this was my answer to a similar question.

Community
- 1
- 1

Jason Coon
- 17,601
- 10
- 42
- 50
1
It deppends of the GUI toolkit you're using.
For wxPython, there is boa-constructor. It's a Delphi-like IDE.

Anonymous
- 3,011
- 4
- 24
- 23