Reputation: 51
I have a mac (osx lion). I have installed eclipse (Eclipse Java EE IDE for Web Developers. Version: Indigo Release; Build id: 20110615-0604). And I have installed the python plugins, following instructions from http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python-configuration.htm. Now, according to the instructions, I need to set the python executable path in the eclipse preference.
Now I know mac comes with a version of python installed. And doing "whereis python" at the terminal reveals that it is in usr/bin/. But which file is the python exe? (I am new to mac: one week; I am completely new to python: less than one day).
Thanks.
Upvotes: 1
Views: 668
Reputation: 21984
I am assuming that you tried /user/bin/python and it did not work. ( It worked for me while setting up my pycharm ide)..
Then provide the following path as your python Interpreter path.
/System/Library/Frameworks/Python.framework/Versions/2.6/bin
(of course, your path might be slightly different).
Upvotes: 1