views:

4129

answers:

8

I'm getting started with python, eclipse and pydev. Which Eclipse package should I choose? Nothing on the eclipse homepage tells me what to choose and python documentation assumes I have eclipse installed. Does which package I choose matter?

+6  A: 

If you just plan on doing Python dev, I'd just go with Classic Eclipse.

After that, I'd follow the instructions http://pydev.sourceforge.net/download.html to install PyDev.

I use the same setup for Python development. I also have the RadRails plugin for Ruby on Rails development.

Owen
+4  A: 

If you are getting started, I would recommend you python easyeclipse.

Pydev can give some incompatibilities when using it together with other extensions.

DZPM
A: 

I use J2EE Eclipse for Python and Java development. It works well. But Classic Eclipse should be enought.

maxp
+2  A: 

PyDev was acquired by Aptana, so you might want to check that one out as well.

Luke
A: 

pydev and Python2.6 doesnt work with eclipse for C++. Download the classic version and you should be good.

Viky
+1  A: 

A useful shortcut is to download EasyEclipse for PyDev. This is a version of Eclipse already pre-configured for pydev, and seems to be easier to install than gathering all of the Eclipse pieces yourself. Unfortunately it uses a rather old version of PyDev, but this is easily remedied by going to Help > Software Updates > and letting Eclipse grab the latest version (you'll need to change the PyDev location to SourceForge before doing this).

J. Peterson
A: 

I think that the Aptana distribution of Eclipse the the easiest way to get PyDev these days...especially since it's now free for the full version. If you download the Studio from here: http://www.aptana.org/ You can easily install PyDev from their plugin manager once it's up and running.

Tim White
A: 

I'd recommend http://www.aptana.com/ if you're doing web development (as the editors for web-related contents, such as html, css, javascript are very good) or getting only the Platform Runtime Binary (which is the lightest released Eclipse with things needed for Pydev, around 47 MB -- it can be gotten at: http://download.eclipse.org/eclipse/downloads/, selecting the version you want and then looking for the Platform Runtime Binary).

The install instructions are at: http://pydev.org/manual_101_install.html (and from there a getting started manual follows).

Fabio Zadrozny