vote up 16 vote down star
4

I am just getting into Python development and would like to know which single IDE or editor is the best.

I mainly use Linux, but don't let that stop you if you think the best one is Win/Mac only.

flag
show 1 more comment

31 Answers

1 2 next
vote up 20 vote down

Eclipse and the PyDev plugin are nice together. I used Emacs but being a .NET-developer from the start, I'm so used to a rich and powerful IDE that it simply wasn't enough. Eclipse met my needs and I like being able to run it on my Windows, OS X and Linux machines.

link|flag
show 5 more comments
vote up 16 vote down

I use Vim for python. The default configuration may not suffice so some modifications and plugins are needed. I used this blog post as a starting point. Also a search on Google for this returns good results.

Recently I also heard about eclim which brings Eclipse functionality along with python support to Vim. It uses a server script to provide an interface between Vim and a headless Eclipse instance.

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

This question discusses various text editors and their pros and cons.

I think a text editor is fine for Python and there's no need for a fancy IDE. Personally, I use Emacs which has excellent Python support but learning Emacs is a job in itself so probably not the best thing to do at the same time as learning a new language.

link|flag
vote up 7 vote down

If you are looking for a more professional python IDE, I think Komodo from ActiveState is the best alternative.

It costs $300 USD, though.

There is a free light version called Komodo Edit that offers basical editing of python files.

link|flag
1  
Komodo Edit does more than just basic editing; I find that it's more full-featured than some paid-for editors... Anyways, it has Emacs bindings (meh) and vi emulation (yay!), which I find to be one of its coolest features. – Xiong Chiamiov Aug 29 at 1:21
vote up 6 vote down

PyScripter. It has auto-complete and unit testing support.

If you are coming from Visual Studio background, you will find that the layout is similar to VS in that it also has a project workspace.

link|flag
vote up 6 vote down

I really like Komodo Edit, which you can get from www.openkomodo.com.

Startup times are pretty bad but once it is up and running its great.

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

Not an IDE, but can actually replace one:

iPython, the enhanced command line shell for python that allows you write and run python interactively, has help, profiling, debugging and syntax highlighting built-in, and lets you manage your history of commands and log them to text files so you eventually can get a .py out of what you did in the shell. You can also save and restore your session or just part of it.

It also supports *nix filesystem operations from inside the shell and supports your environmental EDITOR variable for larger edits.

Check out these video tutorials: A Demonstration of the iPython Interactive Shell

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

You might want to look at these related questions.

My take:

On the mac I use Textmate. It has a project system (the missing drawer plugin makes it much nicer, IMO), and many neat Python-specific features for highlighting, commenting/uncommenting, etc. not to mention snippets which you can automatically insert for common tasks. (The one thing I haven't been able to get to work properly is code folding).

On linux I stick with vim but that's just because I'm used to it-- personally I don't know if it would be worth the steep learning curve otherwise since I spend most of my time on the mac. Other more full featured IDEs (eric4 for example, or SPE) tend to get in my way more than help. They have tons of useful features, but it all depends what one is used to.

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

If you are in any way interested in or already using vim I suggest Pida. Pida is an IDE with several useful features for managing projects that uses vim as its editor.

I'm not really sure how active the project is, but it I have used it for some time without many problems.

link|flag
vote up 2 vote down

I agree with Turker's recommendation of Vim/MacVim/gVim and this tutorial. Check out OmniComplete+SuperTab - that was the deal-maker for me.

link|flag
vote up 2 vote down

SPE is my choice, but I've only tried IDLE, Wingware, and Komodo.

SPE is free, it does color syntax highlighting, auto-indentation, syntax checking, and pretty much everything I need.

My advice would be to try SPE or PyScripter, and catalog your dislikes, if any (unless you need to spend $ for 'professional' support -- in my experience, that's pretty much not needed.) Once you have a catalog of deficiencies, you can move on.

"Best" is probably an ephemeral goal.

Gerry

link|flag
vote up 2 vote down

Seen no mention of PythonWin yet. I find it really useful for quick Windows scripts. Great for accessing Windows COM in management scripts (using Tools / COM makepy utlity).

For Linux, I'd like to mention PyCrust, which is now part of wxPython. If you don't mind wxWidgets on Windows or Mac, PyCrust is a cross platform editor / IDE.

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

whatintheworldisthat: PIDA is very active at a few hundred commits/week at the moment.

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

If you are familiar with either vim or emacs or is very determined to learn to use either then thats probably the best choise. Otherwise its probably saner to use Eclipse, Komodo or some other IDE.

I prefer vim ever since I started using it a decade ago. It exists on every platform, its fast, it has all the features you can think of and much more. Since I live mostly in *nix-environment with terminals I use it all the time for all filetypes. But as stated earlier, its a steep learning curve and there is some configuration needed to get it really usefull. And of course you need to like the terminal feeling to choose the path of vim.

link|flag
vote up 1 vote down

I think a simple text editor like notepad is all you need for python, I've never seen a need for a grandiose IDE. Given that, however, I am a big fan of Notepad++, which I use as an all around better replacement for notepad, including editing python.

I'm also not sure there is such a thing as "the best" when it comes to IDEs, most of the differences come down to preference.

link|flag
vote up 1 vote down

I use TextMate and iPython on my Mac. If the code gets larger I also use Eclipse/PyDev. The pyLint integration for PyDev is very helpful. If the IDE you use provides pyLint integration - use it.

The ability to play with the code and objects in iPython really accommodates my style of try and error coding.

As for IDEs: There is another one you might want to keep on your radar: Sun NetBeans. The Python plugin looks promising and is currently available (as beta) for NetBeans 6.5.

Regards,

-Markus-

link|flag
vote up 1 vote down

this is a duplicate question. :/

link|flag
vote up 1 vote down

Here is a similar discussion with feature comparison table.

link|flag
vote up 1 vote down

definitely Emacs!

it serves good as

  • a Python editor,
  • a subversion (or cvs) client (with beautiful ediff)
  • a container of buffers in which you run Python
  • a container of buffers in which you run your favourite shell

if you're just starting with Emacs, download and print a cheat sheet (look for refcards).

if you don't want to learn using Emacs, Eclipse would be my second choice.

link|flag
vote up 0 vote down

You don't need a fully blown IDE for python! just something with syntax highlighting and sensible tab / indentation support.

If you can set it up so your script is run from your editor that's nice too.

I use KDE's kate under Linux, and pythonwin (part of the activestate python package) under windows, but the default IDLE is fine too...

link|flag
vote up 0 vote down

You may be interested in CodeBlocks though I have no idea if how it deals with any features of the features you'd expect from an "IDE" (code completion, object/class lists) vs. a simpler syntax-aware text editor-- I just know it supports syntax highlighting for Python and has some decent builtin wxWidgets RAD tools which may help if your Python project uses wxPy.

link|flag
vote up 0 vote down

I use Eclipse with Pydev plugins. Debugging and refactoring is quite easy. Also there is the possibility to run your script in command prompt inside Eclipse as well.

Eclipse with Pydev is good if you are used to traditional IDEs, where you spend whole your working day in, because it has a lot of additional plugins for version control, database browsing / editing, etc.

link|flag
vote up 0 vote down

I'm less into GUI and more into text-editor. I prefer jEdit. I have used SPE and find it good. I also have used nano on linux/solaris and that works fine too.

link|flag
vote up 0 vote down

I use Kate for all my development. It is a simple multi-document editor which can be picked up real fast and be used comfortably from day one. (I have tried many other options, both IDEs and editors)

link|flag
vote up 0 vote down

On the Windows platform, the Zeus IDE has support for Python.

It does the standard stuff like project workspace management, integrated version control, code folding, syntax highlighting, Python smart indenting etc etc.

Also Zeus keyboard macros can also be written in Python, meaning Zeus can be reconfigured using Python.

link|flag
vote up 0 vote down

Many people seem to like Geany which is available on Linux and Windows. Also Eclipse with the PyDev extension is popular (see EasyEclipse for Python for pre-packaged bundles of these tools).

Personally I like to use a decent text editor, like jEdit, in conjunction with a couple of terminals / cmd windows open in the background.

Regards,
Wayne Koorts
Blog: http://www.wkoorts.com

link|flag
vote up 0 vote down

PyDev for Eclipse is pretty decent, but I prefer the Python plugin for NetBeans. I never used to like NetBeans, but 6.5 is fast, coherent and has a clean UI. I much prefer it to Eclipse.

link|flag
vote up 0 vote down

I'm very skeptical about questions asking for "something that's the best". In your context, you have to try a couple of editors (if you didn't do that already) and stick to the one that suits you best. If there would be a "best" editor, everyone would be using it exclusively.

link|flag
vote up 0 vote down

As I've not seen it mentioned yet, let me suggest Editra. It's free, open source, and has python autocomplete working right out of the box, without jumping through all the arcane hoops that others (vim for example) make you jump through.

It also doesn't have the annoying "please register" popup that you get every few minutes from the pydev plugin to eclipse.

link|flag
vote up 0 vote down

gedit is great in linux. Best to enable some plugins for the best experience though:

  • snippets
  • code comment
  • python indentation (3rd party, for auto-indenting)

There are other helpful plugins, but I find these to be particularly great for python.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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