Skip to content

Instantly share code, notes, and snippets.

@eliasah
Forked from douglarek/install-openjdk.txt
Last active August 12, 2024 16:06
Show Gist options
  • Save eliasah/97c557337048645b60c2eac5d970b79f to your computer and use it in GitHub Desktop.
Save eliasah/97c557337048645b60c2eac5d970b79f to your computer and use it in GitHub Desktop.
How to install openJDK 11 on macOS
$ curl -C - https://download.java.net/java/ga/jdk11/openjdk-11_osx-x64_bin.tar.gz -O openjdk-11_osx-x64_bin.tar.gz
$ tar xf openjdk-11_osx-x64_bin.tar.gz
$ sudo mv jdk-11.jdk /Library/Java/JavaVirtualMachines/
$ java -version
openjdk version "11" 2018-09-25
OpenJDK Runtime Environment 18.9 (build 11+28)
OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
Add the following to your .bash_profile or .zsh_rc
export JAVA_HOME="/Library/Java/JavaVirtualMachines/jdk-11.jdk/Contents/Home"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment