vote up 169 vote down star
171

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)
  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

71 Answers

1 2 3 next
vote up 71 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 50 vote down

Vim - For me it's 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
8  
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 33 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
show 2 more comments
vote up 22 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
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 16 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 14 vote down

If you are on Windows, then PyScripter is the best FREE choice out there. It's a complete IDE with integrated debugger, single executable, no install hassels. It's only 6-7 MB in size. It's got support for remote debugging. Code completion is good, and cross referencing is provided by simply hovering the mouse over the symbol you want to know more about. It's a well thought out project. Plus its FREE and in active development. The latest version supports Python 3.0 as well.

Try it out. It's really good work, just like Python is.

Update PyScripter's option to this list: [Windows, CP, F, AC, PD, EM, SI, LN, CT, UT].

link|flag
1  
Strong +1. Tried a half-dozen others at least, and PyScripter is simply outstanding. You forgot the customizable hotkeys and code templates, and the fact that it's built in a lower level language so it's FAST. – John Pirie Jun 18 at 10:12
show 2 more comments
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 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 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 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 7 vote down

I like SciTE very much.

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 6 vote down

Emacs (python-mode).

link|flag
vote up 5 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 4 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 4 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 4 vote down

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

link|flag
vote up 4 vote down

This similar question also has some suggestions.

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 3 vote down

I just want to update the WingIDE features. I'm referring to the 3.1 version (latest now Febr.2009):

CP, C, AC, MLS (support for C), PD, EM, SC, SI, BM, LN, CF, CT, UT

Hope you'll find this update helpful.

./alex

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

Up until a few months ago I was a long time user of SciTE (SCIntilla based Text Editor) but recently I've switched to using Geany, another lightweight open source Scintilla based text editor written in C. It's a lot like SciTE but better in a lot of aspects.

The only things I changed to make me feel more at home was the color schema (to match SciTE's) and disabling all the widgets I don't need (toolbar etc.).

A screenshot of my Geany instance

Some of the interesting features of Geany (some also apply to SciTE):

  • Folding
  • Markers (easily switch between sections of a file)
  • Simple session restore (project based files)
  • Snippets (similar to SciTE's abbreviations)
  • The ability to reorganize editor tabs

It has also recently acquired a very rudimentary split window plugin (works OK for viewing but lacks full editing support, e.g. proper undo), which is one the useful features I think about from the short time I used GVim.

There is still room left for improvement:

  • Technically it has auto-completion but especially with regards to Python support it still has a long way to go before I'd consider it usable. Apart from the fact that it mostly just does static auto-completion on the basis of a pre-generated file named python.tags, the biggest limitation for me personally is that it doesn't auto-complete local variables or words. Pydev's auto-completion support, though also limited, is obviously a lot better.

Geany (CP, F, AC*, MLS, SI, BM, LN, CF, CT)

link|flag
vote up 2 vote down

It is not easy to recommend an IDE for python, since they all have their strong and weak points.

But here is the two I use, and why:

WingIDE. This is my preferred IDE for larger projects, and the most important reason is its debugging capabilities. No other IDE I have tried have ever come close to WingIDE in that sense. But for that, I have to sacrifice a few things, like re-factoring... and money (I use the commercial version).

PyDev with Eclipse. I have just started to use this one, and love the fact that it has re-factoring. It also has a much better code-completion than WingIDE. On the negative side: I find it to be too complex. I'm struggling with the svn integration, how the projects are done, and that I'm not able to configure it with my favorite low-contrast color scheme.

A few years back, Emacs was my favorite (for programming, reading email and usenet new). Today, I prefer a perfect IDE... of which we have none... :-)

PS: I suggest an addition to the Acronyms: REF - Refactoring.

link|flag
vote up 2 vote down

I really like using IntelliJ IDEA with Python plugin. Sometimes I need to cheat and look at the code of the library I'm using.

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

You should add Boa Constructor. I used it only once but it seems mature. http://sourceforge.net/projects/boa-constructor/ It contains a usable RAD - GUI and a code designer (as Dabo).

I'd suggest few more features to your list (in which I'm interested in particular):

  • GUI Designer (e.g. Qt, Eric, ..)

  • integrated database support

  • RAD (rapid application development, which IMHO means that the GUI Designer integrates code generation in a way that the user doesn't need to know about, for basic needs (as Visual Basic, and as where Dabo is aiming).

IMO Rapid dekstop development with seamless DB integration makes development rock for most common business applications, both in development and more importantly - for maintenance.

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

I would say that the best IDE for Python would be Wing IDE. Though it's a commercial application, it's quite powerful and it does justice to Python language.

Second IDE I would opt for is PyScripter, it is very simple but powerful and it gets the job done with no hassles. Moreover, it's free.

Third IDE I would opt for is Eric IDE, especially for developing PyQt Applications.

Also, I am on the lookout for Netbean's Python support, so far, they have only released a Early Release version. Lets see how the final version comes out.

link|flag
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 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 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 1 vote down

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

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.