Install Azul Zulu on macOS
This section explains how to install Azul Zulu Builds of OpenJDK on macOS.
Install using a DMG installer
-
Download a DMG installer for Azul Zulu from Azul Downloads.
-
Double-click the file to start the installation and follow the wizard instructions.
The default installation folder is:
/Library/Java/JavaVirtualMachines/<zulu_folder>/Contents/HomeThe
<zulu_folder>
placeholder represents the type of the Azul Zulu package (JDK or JRE) and its version:Package Azul Zulu folder name Example JDK
zulu-<major_version>.jdk
zulu-21.jdk
JRE
zulu-<major_version>.jre
zulu-21.jre
For example, the default installation folder for Azul Zulu JDK 21 is:
/Library/Java/JavaVirtualMachines/zulu-21.jdk/Contents/Home -
To verify your Azul Zulu installation, run the
java
command in a terminal window:java -versionYou should see output similar to the following:
openjdk version "21.0.4" 2024-07-16 LTS OpenJDK Runtime Environment Zulu21.36+17-CA (build 21.0.4+7-LTS) OpenJDK 64-Bit Server VM Zulu21.36+17-CA (build 21.0.4+7-LTS, mixed mode, sharing)
Install from a ZIP or TAR.GZ file
-
Download Azul Zulu as a ZIP or TAR.GZ file from Azul Downloads.
-
Launch Finder and navigate to the download folder. Double click the file to unpack it. If you download the file using Safari, it may automatically unpack the file.
Alternatively, you can use one of the commands below to unpack the file:
For ZIP:
unzip <zulu_package>.zipFor TAR.GZ:
tar -xzvf <zulu_package>.tar.gzThe folder where you unpacked the archive is your Azul Zulu installation folder.
-
To verify your Azul Zulu installation, run the following command in a terminal window:
<installation_folder>/bin/java -version -
(Optional) Add
<installation_folder>/bin
to yourPATH
environment variable, so that you can executejava
from any folder without specifying the full path.