vote up 183 vote down star
182

As a Python newbie, it is interesting to know what IDE's ("GUIs/editors") others use for Python coding.

If you can just give the name (e.g. Textpad, Eclipse ..) that will be enough. If it is already mentioned, you can just vote for it.

But if you can also give some more comparative information, that will be much appreciated.

Thanks.


Update: Results so far

  1. PyDev with Eclipse (CP, F, AC, PD, EM, SI, MLS, UML, SC, UT, LN, CF, BM)
  2. Komodo (CP, C/F, MLS, PD, AC, SC)
  3. Emacs (CP, F, AC, MLS, PD, EM, SC, SI, BM, LN, CF, CT, UT, UML)
  4. Vim (CP, F, AC, MLS, SI, BM, LN, CF )
  5. TextMate (Mac, CT, CF, MLS, SI, BM, LN)
  6. GEdit (Linux, AC)
  7. Idle (CP, F, AC)
  8. PIDA (Linux, CP, F, AC, MLS, SI, BM, LN, CF)(VIM Based)
  9. NotePad++ (Windows)
  10. BlueFish (Linux)
  11. JEdit (CP, F, BM, LN, CF, MLS)
  12. E-Texteditor (TextMate Clone for Windows)
  13. WingIde (CP, C, AC, MLS (support for C), PD, EM, SC, SI, BM, LN, CF, CT, UT)
  14. Eric Ide (CP, F, AC, PD, EM, SI, LN, CF, UT)
  15. Pyscripter (Windows, F, AC, PD, EM, SI, LN, CT, UT)
  16. ConTEXT (Windows, C)
  17. SPE (F, AC, UML)
  18. SciTE (CP, F, MLS, EM, BM, LN, CF, CT, SH)
  19. Zeus (W, C, BM, LN, CF, SI, SC, CT)
  20. NetBeans (CP, F, PD, UML, AC, MLS, SC, SI, BM, LN, CF, CT, UT, RAD)
  21. DABO (CP)
  22. BlackAdder (C, CP, CF, SI)
  23. PythonWin (W, F, AC, PD, SI, BM, CF)
  24. Geany (CP, F, very limited AC, MLS, SI, BM, LN, CF)
  25. UliPad (CP, F)
  26. Boa Constructor (CP, F, AC, PD, EM, SI, BM, LN, UML, CF, CT)
  27. ScriptDev (W, C, AC, MLS, PD, EM, SI, BM, LN, CF, CT)
  28. Spider (CP, F, AC)


Acronyms used:

  • CP - Cross Platfom
  • C - Commercial
  • F - Free
  • AC - Automatic Code-completion
  • MLS - Multi-Language Support
  • PD - Integrated Python Debugging
  • EM - ErrorMarkup
  • SC - Source Control integration
  • SI - Smart Indent
  • BM - Bracket Matching
  • LN - Line Numbering
  • UML - UML editing / viewing
  • CF - Code Folding
  • CT - Code Templates
  • UT - Unit Testing
  • UID - Gui Designer (e.g. QT, Eric, ..)
  • DB - integrated database support
  • RAD - Rapid app development support

I don't mention basics like Syntax highlighting as I expect these by default.


This is a just dry list reflecting your feedback and comments, I am not advocating any of these tools. I will keep updating this list as you keep posting your answers.

PS. Can you help me to add features of the above editors to the list (like autocomplete, debugging, or etc)?

flag
4  
VIM also has: AC (CTRL+N), MLS(a lot of languages supported), PD(plugin), EM(plugin), SC(plugin), SI(option to enable), BM(option to enable), LN(option to enable), CF(default), CT(snippetEMU) – igorgue Apr 1 at 20:09
show 11 more comments

74 Answers

1 2 3 next
vote up 17 vote down

I use a Mac and prefer Textmate but there are other choices. For the PC I have heard only good things about Notepad++.

link|flag
show 1 more comment
vote up 11 vote down

There is Komodo from ActiveState which is commercial, there is also Komodo Edit which is free.

link|flag
vote up 5 vote down

Eclipse with PyDev is pretty good these days.

I did dabble a little with SPE (http://pythonide.blogspot.com/) and Eric (http://www.die-offenbachs.de/eric/index.html) but found them a bit slow.

link|flag
vote up 5 vote down

Big fan of Active States's Komodo IDE, which has excellent multi-language support, debugging, code-completion, source control integration etc. There's also its free little brother Komodo Edit available which is more than capable for many day-to-day tasks.

Both are cross-platform (Windows, Mac and *nix)

link|flag
vote up 54 vote down

Vim - For me it's the best choice, regardless of technology I'm using at the moment. It's not so hard to learn as it looks and during the work you are becoming more and more productive.

link|flag
9  
I second vim, not only because of its power, but also because it pays off to learn it since you can reuse this knowledge a lot. Vim is omnipresent across platforms and is a great option for terminal editing, shining especially through telnet/ssh. – nachik Feb 16 at 10:39
4  
vim rocks[ESC]100i![ESC]111 – pi Apr 7 at 7:34
5  
And you can extend Vim with plugins written in Python. – rq May 10 at 17:49
vote up 4 vote down

The editor that comes with the python distribution (Idle) is very good for first time Python programmers.

link|flag
vote up 72 vote down

I use Eclipse plus the PyDev plugin. PyDev has support for PyLint, which is another free download. With those three installed, you have an environment that can parse your python and spot errors (almost all errors, i.e bad vars, bad types, bad includes) as you type.

You can also debug from within the IDE, including single stepping. Selecting text in the IDE will evaluate it in the current environment (like visual studio's tooltips). It can launch and debug several processes from the one debugger and handles Twisted pretty well. I currently use it for working with Twisted and Django.

If you go with Eclipse, you should consider these plugins

Also, outside of Eclipse, I suggest you get IPython for your command line debugging pleasure. I prefer it over the standard command line shell and IDLE (The GUI shell).

link|flag
2  
+1 for PyDev, and I would actually recommend that you shell out for the PyDev Extensions, it makes the environment much smarter fabioz.com/pydev – Henrik Gustafsson Feb 5 at 18:09
11  
As of Sep 3 2009, PyDev Extensions is open source, and included free with PyDev – itsadok Sep 6 at 6:27
show 7 more comments
vote up 1 vote down

It would help if you provided what platform you are working on. For Linux (and probably other platforms) there is an Eclipse plugin for Python. I believe there is also a plugin for KDevelop.

I've heard a lot of good things about Code::Blocks, and it is multiple platform (win, mac, lin). Maybe give this a try: http://www.codeblocks.org/

link|flag
show 2 more comments
vote up 25 vote down

See appropriate page in Python wiki and choose the one that fits your taste (have you ever heard of Emacs vs. Vim flame wars? ;)).

Personally, I'm using Textmate on Mac, Komodo Edit on Windows and PIDA on linux.

link|flag
show 1 more comment
vote up 4 vote down

This similar question also has some suggestions.

link|flag
vote up 1 vote down

Usually any decent text editor will get the job done when editing Python files. I used Geany quite regularly since it has highlighting, indenting, and can run the script directly from the editor. It also includes a class browser feature which can extract methods and variables from a source file into a tree structure.

It is also extremely lightweight so it's not a big deal to start up for a quick edit.

link|flag
vote up 6 vote down

I use gedit on my Ubuntu Linux machines. It's part of the standard GNOME installation and so you will also find it on many other Linux distributions. This means that it's either installed by default or installation is just one command away. When you load it up it looks a bit like notepad does on Win XP but it is a lot more powerful.

The beauty of gedit is that it has Syntax highlighting, not just for Python, but for many other languages as well. This is great because it means that I only have to get used to one editor no matter which language I happen to be hacking in.

If wish, you can also get it to do things like bracket matching, line numbering, launch a python console etc. More details can be found at

http://www.instructables.com/id/Using-Gedit-as-a-Python-IDE/

link|flag
show 1 more comment
vote up 9 vote down

IDLE -- Does the trick for me (on Windows). Sometimes applications have weird quirks when run with this tool; otherwise its completion features are unequalled. Ugly font rendering, use bitmap fonts. Ugly GUI. Sometimes the loopback connection breaks and restarting is required to get it working again.

PyDev -- Lacks IDLE's completion features, but features smarter indenting. Requires you to create projects beforehand; after you do that, however, just copy pasting your Python scripts to the project folder will do. Sometimes it froze hard, but I'm not running the latest versions.

Gedit -- Does the trick for me (on Linux). General purpose editor that comes with a general purpose autocomplete plugin that is actually pretty good given the premises.

Vim -- I have a beef with how Vim autoindents Python.

For the first times though, nothing beats running Python's own text shell for toying around and reading those overlong help() outputs with less (Linux only). Otherwise be prepared to scroll up a lot.

link|flag
vote up 40 vote down

Emacs has very good Python support, both wrt. syntax highlighting and getting the indention levels right.

Note that Emacs has a rather steep learning curve. But once you master it, it will help you be very productive in any language.

If you're interested, the Emacs wiki is a great starting point.

link|flag
2  
I'd say that it's steep, but not very high. Once your brain starts moving in the right direction, it's not terribly difficult to figure out. – Jason Baker Mar 23 at 12:46
1  
+1 emacs all the way. The only one with all features. Integrated debugging with watches and breakpoints, syntax highlight, auto ident, you can point the mouse to a var and see its value in a tooltip, refactor tools, working completion, project management, games, kitchen sink... – nosklo Apr 8 at 19:50
vote up 1 vote down

I code Python mainly under Linux, and use Bluefish, a text editor intended mainly for web design but which has syntax highlighting for Python. I think the power of a Python interactive session means there's no need for an IDE.

link|flag
show 1 more comment
vote up 0 vote down

I've been using Vim without hassle for all of my Python development. I find it handles all programming languages very well, but when it comes down to it, it's a personal preference and you have to experiment with all the editors around until one suits you best.

link|flag
vote up 6 vote down

A general purpose editor which is not mentioned too often is jEdit. After searching for an editor that suits me for years I settled on that one and use it pretty much exclusively now. Despite being java-based it feels fast and even starts up quickly on not too old computer.

link|flag
vote up 0 vote down

I prefer to use PyDev for Eclipse, but E-Texteditor has some good bundle support (same as Textmate).

link|flag
vote up 1 vote down

Dabo has its own IDE. It was decent if you wanted to use the dabo library to help with wxWidgets in Python. I stopped using it since I've moved to doing web development.

In Windows, I use Notepad++. In Linux, I am still trying to figure out what I like the most. I'm trying out Eric4 right now.

link|flag
vote up 1 vote down

Which editor I use depends on the OS/environment I'm working in.

link|flag
vote up 0 vote down

I use eric ide for most of my python work. It has all major features needed in an IDE, and quite a few minor ones as well, it is written entirely in python and uses QT so it is pretty cross platform. It also integrates the interactive python shell for quick experimetation.

link|flag
vote up 10 vote down

Ive been a professional working with Python for 8 years and for large projects nothing have been more practical to work with as WingIde. Komodo, Eclipse, Boa, SPE, IDLE, PythonWi has always caused me grief and I always go back to WingIde. WingIde should be high on the list especially if you have to debug multi-threaded python apps, large frameworks like Zope, Django, Twisted, etc. It is cross-platform, multi-monitor, excellent support, always improving.

When you have to develop projects with hundreds of modules, WingIde is a strong choice.

link|flag
vote up 0 vote down

For Windows I tend to use ConTEXT. It's not open source, but still excellent none-the-less.

link|flag
vote up 7 vote down

I like SciTE very much.

link|flag
vote up 0 vote down

It is very strange that nobody mentioned ipython (http://ipython.scipy.org/moin/). Ipython is a "python shell on steroids". It is a very useful (actually, must have) companion to any IDE. The new version of ipython is supposed to solve several problems that prevent its integration to IDE's. I really hope PyDev will have ipython integrated in it.

link|flag
vote up 4 vote down

I normally use SPE (http://pythonide.blogspot.com). It's written with wxPython and includes wxGlade as a development tool. It also has code completion, UML generator, Blender support, and built-in PyDoc viewer. There are also many other features that it comes with, not to mention that it's free to use.

link|flag
vote up 6 vote down

Emacs (python-mode).

link|flag
vote up 8 vote down

Netbeans, if Jython is ok for you.

link|flag
3  
You can set up a python interpreter on your system , you don't have to use jython . – Geo Jan 27 at 16:13
show 2 more comments
vote up 19 vote down

+1 for Wing Professional IDE.

The "Go To Definition" and "Source Assistant" can really go a long way to assist in your Python learning.

It has Vi and Emacs Emulation too, if you need either of them. Only the UI is bad, if on Windows (as it is based on GTK). It rocks on Ubuntu.

If you are using any text editor, (Scite is my choice) then you'd do well by using IPython console. (You can do a easy_install of IPython if easy_install is installed.)

With Python itself providing debug options, and IPython and Bash shell offering good auto-complete options, it is not really that bad an option to do away with an IDE. But if you still want an IDE (as I want), Wing Professional is the best one out there.

I have also tried SPE and PyDev and am not impressed enough to consider them. Some features of PyDev include verifying whether a variable is used or not and auto-setting of different modes- Debug, PyDev, and Java Browsing when you run an application.

If you only need a good Syntax highlighting SciTE (on Windows, SciTE based Notepad++) is a good option.

If you need project organization and auto-complete with syntax highlighting, Komodo Edit is the best option. It also supports many other languages.

If you want everything but the space shuttle (minus some special features of PyDev), Wing Professional is the best IDE currently available.

The most important thing is to choose one and go with it.

link|flag
vote up 1 vote down

On Windows there is Zeus - http://www.zeusedit.com

It does Python syntax highlighting, code folding, code indenting, code templates etc.

You can even write Zeus macros using the Python language.

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.