Python Interpreter not installed after installing Aptana Studio3

放肆的年华 提交于 2020-01-12 08:35:32

问题


I was under the impression that installing Aptana Studio 3 also installed the python interpreter. when I try to create a PyDev project it says that "Project Interpreter not specified" So it will not let me proceed. Is there any documentation on how to proceed configuring the interpreter for Studio 3? I am using the latest build of Aptana Studio 3 standalone build: 3.0.4.201108101506.

Thanks In advance for any assistance.

PS I have already uninstalled and reinstalled studio 3 and am still having the same issue I am running it on windows 7 64 bit machine


回答1:


I'd probably recommend you just download Python from the official site, and configure Aptana to find it.

You can download the latest version of Python from here:

http://www.python.org/download/

You didn't specify whether you were using Python 2.x or Python 3.x? For compatibility reasons, I'd probably go with Python 2.x. The latest 64-bit Windows version of it is 2.7.2., direct link is:

http://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi

After you've downloaded and installed it, it will place your python interpreter in (assuming you use C:\ as your Windows drive):

C:\Python27\Python

You simply need to point Aptana to this. To do this, go into preference, then on the left, look for Pydev. Expand that, and look for the section Interpreter - Python.

In theory, if you click Auto Config, it should automatically detect C:\Python27. If it doesn't, you simply need to click New, then use the File dialog prompt to find C:\Python27\python.exe. This will also automatically import all the Python libraries and site-packages you have installed as well (although if this is a fresh install, it'll just be the stdlibs).

Let us know if you have any issues with the above.

Cheers, Victor



来源:https://stackoverflow.com/questions/7314139/python-interpreter-not-installed-after-installing-aptana-studio3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!