IDE

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Aravind

    #1

    IDE

    hi,

    i am a newbie to python but used with some developement in c++ and VB. Can
    anyone suggest me a good IDE for python for developing apps...? i've seen Qt
    designer.. some of my friends said it can be used for python also but they r
    not sure.

    pls help...

    thanks in advance....


  • kishimo

    #2
    Re: IDE

    I recommend you Stani's Python Editor (SPE) which is available for
    Windows, Linux and Mac.

    A short tutorial about SPE can be found at:


    good luck

    Comment

    • Bruno Desthuilliers

      #3
      Re: IDE

      Aravind wrote:
      hi,
      >
      i am a newbie to python but used with some developement in c++ and VB. Can
      anyone suggest me a good IDE for python for developing apps...? i've seen Qt
      designer.. some of my friends said it can be used for python also but they r
      not sure.
      What you're talking about here is a GUI designer tool, not an IDE. GUI
      designer tools are bound to a particular GUI toolkit, so you need to
      choose your GUI toolkit too. There are some GUI toolkits available for
      Python, the most used being TK (the one in the stdlib), wxWidget (a C++
      portable toolkit running on Windows/Unices/MacOS X) and GTK (a C toolkit
      initially written for Linux, but there's a Windows port AFAIK), with the
      corresponding bindings for Python resp. Tkinter, wxPython and PyGTK.
      QTDesigner is for QT, another GUI toolkit running on bowth Windows and
      Linux - but there are (was) some licencing limitations on Windows.


      --
      bruno desthuilliers
      python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
      p in 'onurb@xiludom. gro'.split('@')])"

      Comment

      • fuzzylollipop

        #4
        Re: IDE


        Aravind wrote:
        hi,
        >
        i am a newbie to python but used with some developement in c++ and VB. Can
        anyone suggest me a good IDE for python for developing apps...? i've seen Qt
        designer.. some of my friends said it can be used for python also but they r
        not sure.
        >
        pls help...
        >
        thanks in advance....

        Active State Komodo
        Runs on Windows, Linux and Mac OS X
        there is even a cheap $29 personal version available.

        Comment

        Working...