IDE for python

Chris Angelico rosuav at gmail.com
Wed May 28 07:33:00 EDT 2014


On Wed, May 28, 2014 at 8:43 PM, Sameer Rathoud
<sameer.rathoud at gmail.com> wrote:
> I am currently using python 3.3
>
> With python I got IDLE, but I am not very comfortable with this.
>
> Please suggest, if we have any free ide for python development.

You don't really need an IDE, generally. A good text editor - I use
SciTE, but as alister said, there are as many viable answers as there
are posters - is all you need. Back when I wrote code in Q-BASIC,
VX-REXX, and then C and C++, I used IDEs, but even then the main
features I used were just smart text editors.

My preferred "IDE", these days, is Debian Linux with Xfce, which gives
me a convenient workspace in which to run SciTE plus a few dozen
terminal windows. One of them will be dedicated to source control
(git, hg, or whatever the current project uses); some of those do have
GUI interfaces or editor integration, but I find it easiest to use the
command line. Another generally is for running the program, unless
it's one that permanently stays running (or is being remotely
manipulated via a TCP/IP link). Then, depending on what I'm doing, I
might have a few more... maybe a music player (or maybe that's VLC,
invoked via the Yosemite Project), maybe a few man pages, whatever
else I need. It's highly unlikely that anyone's written an IDE that
does everything I could possibly want, so I just use the computer's
desktop as that IDE. It can do anything! :)

ChrisA



More information about the Python-list mailing list