Skip to content

Instantly share code, notes, and snippets.

@zxh
Forked from JeOam/Java.md
Last active June 1, 2018 09:37
Show Gist options
  • Save zxh/a762ad3e4ff3e0d8a695f4e332eff6bc to your computer and use it in GitHub Desktop.
Save zxh/a762ad3e4ff3e0d8a695f4e332eff6bc to your computer and use it in GitHub Desktop.
Install Java 8 on OS X

on El Capitan, after installing the brew...

$ brew update
$ brew tap caskroom/cask
$ brew install Caskroom/cask/java

And Java 8 will be installed at /Library/Java/JavaVirtualMachines/jdk1.8.xxx.jdk/

export JAVA_HOME=`/usr/libexec/java_home -v 1.8`

Check version:

$ java -version 
java version "1.8.0_74"
Java(TM) SE Runtime Environment (build 1.8.0_74-b02)
Java HotSpot(TM) 64-Bit Server VM (build 25.74-b02, mixed mode)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment