I have installed java se 7u71 but running eclipse show the below dialog
.
I have installed java se 7u71 but running eclipse show the below dialog
.
There are active discussions here
Check this https://apple.stackexchange.com/questions/58203/mountain-lion-with-java-7-only/58841#58841 and this thread Eclipse Kepler for OS X Mavericks request Java SE 6
This is because you haven't set your environment variables yet.
Open your terminal and type this
vim ~/.bash_profile
You can set your environment variables here.
Press i
once the file opens up.
Suppose your jdk installation folder is:
/Library/Java/jdk1.7/
Type this in the file opened in your terminal:
JAVA_HOME="/Library/Java/jdk1.7"
PATH=$PATH:"$JAVA_HOME/bin"