I have the Java Android SDK package downloaded and I also have a jre downloaded and put in the same folder as eclipse, but when I go to run eclipse it is not starting and is giving me an error message saying that it cannot find a jre. Wondering what is going on here. Thanks, Brett
Asked
Active
Viewed 49 times
0
-
Note you must have a JRE _installed_ in order for Eclipse to run. – Alex Wittig Feb 24 '14 at 21:45
-
I have the jre and eclipse installed – Brett Dickey Feb 24 '14 at 21:47
-
my problem is just the eclipse is refusing to start because it cant find my jre(in the same folder) – Brett Dickey Feb 24 '14 at 21:48
-
Make sure `JAVA_HOME` and `JRE_HOME` are set. – Alex Wittig Feb 24 '14 at 21:50
-
See http://stackoverflow.com/questions/16394822/setting-up-eclipse-with-jre-path – Alex Wittig Feb 24 '14 at 21:51
-
thats the error im getting! i just need a step by step on how to fix this – Brett Dickey Feb 24 '14 at 21:54
2 Answers
0
you should download the android version of eclipse here http://developer.android.com/sdk/index.html at this site you can also find the tutorials for setting it up as well

Phin46
- 22
- 1
-
http://developer.android.com/sdk/index.html i used this page to download a pacakage inculding eclipse. which is that same page!! – Brett Dickey Feb 24 '14 at 21:46
0
You must have a JRE or JDK on your PATH
in order to run Eclipse.
If you are on Windows 7, go to Control Panel > System > Advanced System Settings > Advanced > Environment Variables. Find the Path
system variable. Edit it and append the location of your JRE's bin
folder to the end of it.
Note that the JRE will be enough to run Eclipse, but to actually compile any code you will need a JDK.

Alex Wittig
- 2,800
- 1
- 33
- 42