Search code examples
pythoneclipsepydevinterpreter

Eclipse, PyDev "Project interpreter not specified”


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


Solution

  • 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.