Skip to content

Instantly share code, notes, and snippets.

@dfang
Last active July 30, 2018 12:42
Show Gist options
  • Save dfang/6221af695d31e40cdca9db14a0645edb to your computer and use it in GitHub Desktop.
Save dfang/6221af695d31e40cdca9db14a0645edb to your computer and use it in GitHub Desktop.
Install Java via Homebrew (brew) on Mac OSX and set JAVA_HOME
macOS high sierra include java jdk 1.8.
```
java -version
ls -al `which java`
```
but if you want to update,
```
brew search java
brew cask install java
export JAVA_HOME=`/usr/libexec/java_home -v 1.8`
```
@dfang
Copy link
Author

dfang commented Jul 30, 2018

To see which java versions are currently installed:

/usr/libexec/java_home -V

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment