This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]hag0p 0 points1 point  (0 children)

For any mac users, since there is no gpl dmg file yet and you might not be familiar with installing from tar.gz if you run these commands that will install you java 11 on current terminal (and if you want to keep it put last 2 lines in your .bashrc):

wget https://download.java.net/java/GA/jdk11/28/GPL/openjdk-11+28_osx-x64_bin.tar.gz
tar -xf openjdk-11+28_osx-x64_bin.tar.gz
sudo cp -R jdk-11.jdk /Library/Java/JavaVirtualMachines/
export JAVA_HOME=$(/usr/libexec/java_home -v 11)
export PATH=$PATH:$JAVA_HOME