vote up 171 vote down star
173

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

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

Usually people that come from other languages especially the .NET ones will ask about IDEs and won't accept text editors as an answer.

Because of the nature of the language a tool that tries to approach increasing productivity like eclipse and netbeans do for java or VS does for C# will fail miserably at that.

The features I've found most useful in the tools I've used for python are:

  • Good support for code snippets - Textmate/e-editor, Gedit, Emacs
  • Good support for browsing directory structures and moving around files - Textmate/e-editor, Eclipse (with pydev), Gedit.
  • Autocomplete for used names - Textmate/e-editor, Emacs, Gedit.
  • Good integration with VCS - Eclipse, Emacs, Textmate.

I've mostly stuck with Textmate on OS X and e editor on Windows. In combination with IPython I don't have much need to use anything else.

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

NetBeans provides also an Integrated (Graphical) Python Debugger.

(Sorry, not enough rep to comment)

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

Is there any reason why PythonWin hasn't been mentioned yet? I find it easy to use, has nice autocompletion, and it's available under Windows if PyWin32 is installed.

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

I suggest using Visual studio and IronPython.

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

Anyone use the Cream front end for Vim?

http://en.wikipedia.org/wiki/Cream_(software)

link|flag
vote up 0 vote down

My favorite Python IDE is Komodo. Never had any problems with it and it has everything a developer needs. And if something is not built in you can easily extend the IDE.

link|flag
vote up 0 vote down

For new Python learners the python.org download comes equipped with IDLE which is excellent to start with. It may be ugly but it is very good (auto-complete is good for new learners to).

link|flag
vote up 0 vote down

NetBeans is great, especially if you also happen to do for instance C / C++, Java or PHP.

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

Emacs (python-mode).

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

I like SciTE very much.

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

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

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

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

Your Answer

Get an OpenID
or

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