0
I deleted versions previous to Java 8 and now the eclipse does not want to run, the following error message appears:
" Java was Started but Return Exit code =13.":
There’s a similar topic: I’ve done what the topic solution said: Error trying to run Eclipse: Java was Started but Return Exit code =13
That is to say:
I already installed the JDK 1.7 again and put the path for it in the environment variable "Path": C:\Program Files (x86)\Java\jdk1.7.0_80\bin
And the mistake remains the same.
What can I do to fix?
Opening your command terminal,
java -version
returns what? Andwhich java
? Andwhere java
? (I don’t remember if in Windows iswhere
orwhich
, but if you’re usingbash
the correct answer is the opposite of the Windows answer, so I put the two options)– Jefferson Quesado
Apparently the VM pointed out by the argument
-vm
who stands in the way.../Oracle/Java/javapath
is not version 7 of JVM– Jefferson Quesado
Hmmm, java -version returns version 1.8....
– Lucas Pletsch
strange, I thought that these arguments that ask for Java 7 was minimum requirement...
– Jefferson Quesado
But how do I change the VM pointed by the vm?
– Lucas Pletsch
In the directory where the eclipse is installed, there is a file called
eclipse.ini
. It is in this boy that you change. I recommend to save a backup of it, only then change and put the desired path.– Jefferson Quesado
It seems your eclipse is 64 bits. Why you installed Java 32 bits? That question reports the same error and the answer was by everyone in the same 64-bit scheme.
– Jefferson Quesado