-
Notifications
You must be signed in to change notification settings - Fork 61
Windows Installation
Dipjyoti Metia edited this page Mar 9, 2019
·
1 revision
- Download Java 8 JDK from here
- Accept license agreement and download
jdk-8u201-windows-x64.exe
from above link. - Install downloaded Java 8 JDK.
- System Properties -> Environment Variables -> System Variables -> New ->
JAVA_HOME
and Value asC:Program Files\Java\jdk1.8.0_201
(path where JDK is installed) - System Properties -> Environment Variables -> System Variables -> Select
Path
and Edit -> Add%JAVA_HOME%\bin
- Once Environment variables are configured, open command prompt and run
java -v
andecho $JAVA_HOME
to check whether java version installed is returned. e.g
$ java -version
$ java version "1.8.0_201"<br/> Java(TM) SE Runtime Environment (build 1.8.0_201-b13)<br/> Java HotSpot(TM) 64-Bit Server VM (build 25.101-b13, mixed mode)
- Please install Community Edition of
Intellij IDEA
from here