Ok so I have this project to do and hopefully I will learn Python well
in the process.
I'm just wondering what's the best IDE to use for Python on OS X?
I'll be using Twisted quite a bit as well.
I'm not really looking for anything in particular just something that
makes life easy...:)
Which is the best out of these?
Eclipse
Netbeans
XCode (Apple's IDE)
IDLE
TextMate (An advanced text editor)
Any help or suggestions would be great?
Regards
Dave
Advanced text editors like Emacs and VIM can be another option.
Strictly speaking, they are not IDEs, but can accomplish your code
editing tasks just as well.
I am using MacVIM for most tasks. There must be plugins that help you
write code in Python, though I am not currently using any. If you
decide to explore these tools, [1] may contain some useful
information.
[1] http://dancingpenguinsoflight.com/2009/02/python-and-vim-make-your-own-ide/
Uldis
> Those other tools with Textmate sound interesting, I tried out pychecker yesterday, but it gave me a lot of errors, but some of them were not
> errors and my code stopped working. So I have kind of stopped using it already.
> I'll have a look into the other tools anything that makes life easier is a must :)
I used the PyQT Designer and it's quite nice. It's probably not an IDE in
the same sense as Netbeans/Visual Studio, but it allows you to make rich
and very good looking GUIs which can be saved as an XML file to load from
python using the PyQT package modules.
As for code writing, I write almost all of my code using vim. Haven't felt
the need to use anything else, honestly, but I must say the urls mentioned
before about setting up a python environment for vim were quite an
interesting read!
Cheers,
/GG