Eclipse, PyDev "Project interpreter not specified”

apadana picture apadana · Jun 22, 2015 · Viewed 51.9k times · Source

I have installed PyDev in eclipse Luna. After successful installation of PyDev, when I want to create a new project I get the error: Project interpreter not specified

How can I fix it? There is no option for interpreter to choose from.

eclipse version Luna, Mac OSX Yosemite, PyDev latest version (installed according to http://pydev.org/manual_101_install.html)

enter image description here

Answer

ramesh bommakanti picture ramesh bommakanti · Jan 25, 2016

In my case it has worked with following steps

Prerequisite: Python should be installed

  1. Go to Window -> Preferences -> PyDev -> Interpreters and click on "Python Interpreter".
  2. Then click on new button and add python executable location.

Example for windows:

c:\python2.7\python.exe

example for ubuntu:

/usr/bin/python
  1. Then you can attached image and click on finish.

It should work.