Java 8
Installing Java 8 on your machine
Open the terminal and check to see which version of Java is installed:
If the resulting output looks like this:
openjdk version "1.8.0_171"
Then the correct version of Java is installed and you do not need to make additional changes. If you see this output, but are still facing issues, go here.
In the rare case that Java is not currently installed on your machine, you will see the following output:
Command 'java' not found
You will need to install OpenJDK:
$ sudo apt install default-jre
Install Java 8 by executing the following command:
Check to see if the Java 8 was installed correctly:
The resulting should look like this:
openjdk version "1.8.0_171"
You now have Java 8 installed and running.
Last updated