Hi, 2008/8/7 privateemail_sam <[EMAIL PROTECTED]>: > Hello to all > I start Python programming and have big problem about it. > Where is it's IDE to create form button and other. > How i create or view the elements of main form or other form.
You can use any IDE you like. Me personally I often use Eclipse with PyDev. You can install both yourself or download it from http://easyeclipse.org/site/distributions/python.html. But you do not have to use those. On Linux I often simply use Gedit (a text editor). There is no form editor. The user interface is developed manually, using the wxPython toolkit. See http://www.wxpython.org for more information and documentation. Cheers, Frank
