You are not logged in.

#1 2009-08-25 19:06:47

cryticfarm
Member
Registered: 2009-07-27
Posts: 47

Python IDE

Can anyone recommend me a good python IDE? I've only seen lists of them on the internet rather then something that can tell me which is better then the other.

Offline

#2 2009-08-25 19:12:16

Peasantoid
Member
Registered: 2009-04-26
Posts: 928
Website

Re: Python IDE

Out of curiosity, why do you need/want an IDE?

IDLE is the only one I've heard of, but that's not really an IDE. (It comes with Python, I think.)

Offline

#3 2009-08-25 19:32:27

Yannick_LM
Member
Registered: 2008-12-22
Posts: 142

Re: Python IDE

I would recommend Eric4 if you want "eclipse-like" IDE.

PyDev for eclipse if you've got too much RAM.

Other than that, I'm pretty happy with ipython and ipdb.

Offline

#4 2009-08-25 19:39:43

lman
Member
From: CZ
Registered: 2007-12-18
Posts: 255

Re: Python IDE

Hi,
on python.org there is the full list and some useful notes, and some reviews: http://wiki.python.org/moin/IntegratedD … vironments
Some of them are a little bit outdated.

I personally use vim with some plugins (minibufexplorer, supertab, NERDTree, taglist etc.) see: http://www.google.com/search?q=vim+python+ide

If you are familiar with eclipse pydev could be a good choice.

From time to time I try KomodoEdit. It was quite usable last time I checked. I think it's a bit lighter than eclipse+pydev and there are some useful plugins on the komodo website.

I think it really depends on what do you need an IDE for. Just for code complition is a bit unnecessary. Geany knows that. For help on functions/classes I use the documentation and the help() in python shell. It's more than enough.

I also heard pida is great too. But it uses vim/emacs, so for me it seemed unnecessary - gvim is enough for me.

Offline

#5 2009-08-25 20:01:30

XFire
Member
From: UK
Registered: 2008-05-11
Posts: 192

Re: Python IDE

I highly recommend Geany, its brilliant IDE for many languages.


There is a difference between bleeding [edge] and haemorrhaging. - Allan

Offline

#6 2009-08-25 20:29:06

toffyrn
Member
Registered: 2008-10-07
Posts: 221

Re: Python IDE

I have used netbeans for almost every coding project i have done.

One can say i have been addicted to it smile

Offline

#7 2009-08-25 22:19:29

Boris Bolgradov
Member
From: Bulgaria
Registered: 2008-07-27
Posts: 185

Re: Python IDE

I use vim and sometimes gedit.

Offline

#8 2009-08-25 22:36:11

Allan
Pacman
From: Brisbane, AU
Registered: 2007-06-09
Posts: 11,405
Website

Re: Python IDE

I looked at pida once and it was quite good.  Now I just use Geany.

Offline

#9 2009-08-25 23:20:21

Profjim
Member
From: NYC
Registered: 2008-03-24
Posts: 658

Re: Python IDE

Not an IDE, but I highly recommend ipython as your interactive shell. It has excellent help and completion, and you can type "edit <file>" or "edit <function>" at the command line and it will start up e.g. vim then reload the file when you've finished editing. Makes for a very convenient working environment.

Offline

#10 2009-08-26 12:04:56

manx
Member
From: Staffordshire, England
Registered: 2008-09-27
Posts: 35

Re: Python IDE

I switched over to Eclipse (with Pydev module) a few weeks ago - still getting used to it, but they do have some good on-site tutorials on how to get aquainted with it, and how to setup new development environments.

It has good project management tools, nice editing functions - code completion, highlighted & coloured syntax etc, a customisable interface, and can easily be expanded to use other languages - Java, C/C++, PHP, Ruby etc.

Yeah, i find it a bit on the "heavy" side after using Vim for so long, but i would highly recommend it.

Offline

#11 2009-08-27 01:36:14

linkmaster03
Member
Registered: 2008-12-27
Posts: 269

Re: Python IDE

I used to use Editra. It is actually written in Python itself and provides all the features I needed without having too many.

Now I use gvim. I decided to take the plunge one day and although it was hard not to switch back to Editra at first, I stuck to it and I love it now. It's so easy to navigate through files.

Offline

#12 2009-08-27 04:33:09

Trent
Member
From: Baltimore, MD (US)
Registered: 2009-04-16
Posts: 990

Re: Python IDE

I used to use jEdit, back before I learned how to really use Vim.  It's not strictly an IDE, but a very nice editor.  Rumor has it there's a plugin that allows you to use it with Jython to run interactively.  Of course you can always bind compilation commands to shortcuts, and it has a rich set of other plugins.   If I didn't have Vim, I would probably be using it full-time.

Offline

#13 2009-08-27 13:11:18

Mr.Elendig
#archlinux@freenode channel op
From: The intertubes
Registered: 2004-11-07
Posts: 4,092

Re: Python IDE

Eric and geany if you are a gui junkie, vim and emacs if you want cli.
Btw, bpython is saner than ipython.


Evil #archlinux@libera.chat channel op and general support dude.
. files on github, Screenshots, Random pics and the rest

Offline

#14 2009-08-27 14:50:07

Profjim
Member
From: NYC
Registered: 2008-03-24
Posts: 658

Re: Python IDE

Mr.Elendig wrote:

Btw, bpython is saner than ipython.

First I've heard of it. I'll check it out, thanks.

ipython is going through growing pains right now. current release is last stable release before some major rewriting starts being merged in.

Last edited by Profjim (2009-08-27 14:51:07)

Offline

#15 2009-08-28 02:30:42

renners1
Member
From: Thailand
Registered: 2004-11-03
Posts: 71

Re: Python IDE

+1 Geany.

Capable but not bloated.


Microsoft stole my computer, Linux gave it back.

Offline

#16 2009-08-28 02:42:02

flamelab
Member
From: Athens, Hellas (Greece)
Registered: 2007-12-26
Posts: 2,160

Re: Python IDE

I propose Geany as well.

Offline

#17 2009-08-29 11:37:13

alexk
Member
From: Sydney, Australia
Registered: 2009-08-27
Posts: 32
Website

Re: Python IDE

Both emacs and vim can be set up as powerful Python IDEs. Just make a choice and stick to it wink

Offline

#18 2009-09-01 15:09:33

mthode
Member
From: Atlanta, GA USA
Registered: 2008-09-07
Posts: 55
Website

Re: Python IDE

I use both vim and komodo depending on how lazy I feel.


GIT d- s-:- a--- C++++ UL++++ P--- L+++ E--- W+++ N++ o K++ w-- O M V-- PS++ PE-- Y++ PGP++ t+ 5+ X R !tv b+ DI++ D++ G
http://www.geekcode.com/geek.html

Offline

#19 2009-09-01 15:47:41

NeOnsKuLL
Member
From: Havana, Cuba
Registered: 2005-03-29
Posts: 117

Re: Python IDE

YaPe? This is a good one. Lightweight and comes with a lot of features.

https://launchpad.net/yape


Intel Core 2 Duo E8400 3.0 GHz | 2x1GB 667MHz | 250+750GB Seageate SATAII | Samsung 19" TFT 1440x900
Openbox + obmenugen + PyTyle | bmpanel2 | oblogout | conky | pyBgSetter (with Esetroot as backend)
Projects: obmenugen, pyBgSetter

Offline

#20 2009-09-01 15:55:55

zukka
Member
From: Bologna Italy
Registered: 2006-06-27
Posts: 26

Re: Python IDE

I use pydev under eclipse, it's pretty heavy but the debugging feature is awesome....

Offline

#21 2009-09-01 17:25:32

lman
Member
From: CZ
Registered: 2007-12-18
Posts: 255

Re: Python IDE

zukka wrote:

I use pydev under eclipse, it's pretty heavy but the debugging feature is awesome....

I use winpdb for that tongue

Offline

#22 2009-09-01 20:26:52

N30N
Member
Registered: 2007-04-08
Posts: 273

Re: Python IDE

Mr.Elendig wrote:

bpython is saner than ipython

It's missing pretty much all the features that make ipython so great (there's more to it than just tab completion and syntax highlighting). As it says on the website "the ideas behind IPython are pretty different to bpython". Plus it uses curses. neutral

lman wrote:

I use winpdb for that tongue

ipython/ipdb for me.

Offline

#23 2009-09-11 03:53:07

muramasa
Member
From: Vancouver, Canada
Registered: 2007-01-08
Posts: 16
Website

Re: Python IDE

Komodo is probably the most comprehensive IDE for Python available but it's not free. The student license is a good value though and would recommend it to anyone. It comes with a fantastic debugger as well.

Offline

#24 2009-09-11 19:08:13

pradtf
Member
Registered: 2009-06-10
Posts: 134

Re: Python IDE

i like emacs and use it for pretty well everything.


in friendship,
prad

Offline

#25 2009-09-12 23:35:17

techprophet
Member
Registered: 2008-05-13
Posts: 209

Re: Python IDE

cryticfarm wrote:

Can anyone recommend me a good python IDE? I've only seen lists of them on the internet rather then something that can tell me which is better then the other.

Vim+FiSH. Hands down best evar for almost all dev work. Besides Java.

Offline

Board footer

Powered by FluxBB