简体   繁体   中英

Installing eclipse neon on windows 10

I've been trying to install eclipse neon on my pc which has windows 10 64 bits.I downloaded the exe file from the oficial page:( https://www.eclipse.org/downloads/download.php?file=/oomph/epp/neon/R/eclipse-inst-win64.exe ) but it wont run i dont know why.

I have java and jdk up to date but still cant make it run.

Thanks in advance

1) create System variable: JAVA_HOME -> C:\Program Files\Java\jdk1.8.0_66\;C:\Program Files\Java\jre1.8.0_66\;C:\Program Files (x86)\Java\jdk1.8.0_66\;C:\Program Files (x86)\Java\jre1.8.0_66\

2) add to PATH -> C:\Program Files\Java\jdk1.8.0_66\bin\;C:\ProgramData\Oracle\Java\javapath;

It might be one of the reason that you are running two versions of JDKs, please check your JDK compatible version for Windows 10 - 64 bit.

please check the Java version first ...

from command prompt: java -version , you should see current java version running on your system like below :

C:\Users\xxxxx>java -version
java version "1.8.0_121"
Java(TM) SE Runtime Environment (build 1.8.0_121-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.121-b13, mixed mode)

if you could see the above msg, then check your java - system variable set to :

JAVA_HOME : C:\Program Files\Java\jdk1.8.0_121
PATH : C:\Program Files\Java\jdk1.8.0_121\bin

Try Eclipse Oxygen (newer than Neon). I had problems with the installer that the Eclipse team recommends, so I downloaded and extracted the zip file under " Eclipse IDE for Java EE Developers " / "64 bit" on http://www.eclipse.org/downloads/eclipse-packages/ (direct link: http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/oxygen/1/eclipse-jee-oxygen-1-win32-x86_64.zip )

Then reference your Java version in the eclipse.ini file. Search for

-vm
C:\Java\JDK\1.8\bin\javaw.exe

on https://wiki.eclipse.org/Eclipse.ini for details.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM