I have been trying to use Eclipse 3.6 as a Python editor. I install the latest version of PyDev, and then try to set the Interpreter - Python field of the preferences, on my ma
PyDev needs the location of the python lib folder to get this directory location on your computer try running this command in the terminal.
python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
And add that directory to your PYTHONPATH location in PyDev in Eclipse.