Project interpreter not specified(eclipse+pydev)

转载自:http://blog.csdn.net/magictong/article/details/7288732

【小记】

最近因为想配置Android的开发环境,把原来的MyEclipse5.5删了,下载了最新的Eclipse3.7版本,因为之前在进行Python开发,就下载了最新的Pydev2.4版本,安装插件之后,新建Python工程时,提示如下错误:Project interpreter not specified,(见图一)。

开始我以为是插件安装有问题,后来查了蛮久才发现是没有导入Python的开发环境导致的。


知道原因了解决就很简单了:

0、当然你的系统必须已经安装了Python的安装环境,这是必须的哦,因为Eclipse仅仅是提供一个IDE而已,并不提供各种语言的解释器、编译器等等。

然后按下面几步简单操作就可以了。

1、从Eclipse的菜单 Window --> Preferences 打开首选项配置;
2、首选项配置页面,找到左边的PyDev项展开,点击Interpreter - Python 项(Interpreter是解释器的意思),见图二;
3、然后点击右侧的 New... 按钮,Interpreter Name 不填写,为空也问题,选择python.exe的安装位置(见图三),然后等待导入完成(图四),问题解决;


图一

Project interpreter not specified(eclipse+pydev)_第1张图片


图二

Project interpreter not specified(eclipse+pydev)_第2张图片


图三

Project interpreter not specified(eclipse+pydev)_第3张图片


图四

Project interpreter not specified(eclipse+pydev)_第4张图片

【END】


你可能感兴趣的:(Project interpreter not specified(eclipse+pydev))