A2oz

How to Install JDK?

Published in Software Installation 3 mins read

Installing the Java Development Kit (JDK) is essential for developing and running Java applications. Here's a step-by-step guide on how to install JDK on different operating systems:

1. Download the JDK

2. Install the JDK

Windows:

  • Double-click the downloaded installer file.
  • Follow the on-screen instructions to complete the installation.
  • Make sure to select the "Add to PATH" option during installation.

macOS:

  • Open the downloaded DMG file.
  • Drag the JDK folder to the Applications folder.
  • Open the Applications folder and double-click the JDK folder to launch the installer.
  • Follow the on-screen instructions to complete the installation.

Linux:

  • Open a terminal window.
  • Use the wget command to download the JDK archive file.
  • Extract the archive file using the tar command.
  • Set the JAVA_HOME environment variable to the JDK installation directory.
  • Add the JDK bin directory to the PATH environment variable.

3. Verify the Installation

  • Open a terminal or command prompt window.
  • Type javac -version and press Enter.
  • If the JDK is installed correctly, you should see the version information of the installed JDK.

4. Setting Up the Environment Variables (Optional)

  • Windows:
    • Go to "System Properties" -> "Advanced System Settings" -> "Environment Variables".
    • Create a new system variable named JAVA_HOME and set its value to the JDK installation directory.
    • Edit the Path system variable and add the %JAVA_HOME%\bin directory.
  • macOS:
    • Open a terminal window.
    • Edit the .bash_profile file using a text editor.
    • Add the following lines:
        export JAVA_HOME="/Library/Java/JavaVirtualMachines/jdk-version/Contents/Home"
        export PATH="$JAVA_HOME/bin:$PATH"

      Replace jdk-version with the actual JDK version.

  • Linux:
    • Edit the .bashrc or .profile file using a text editor.
    • Add the following lines:
        export JAVA_HOME="/usr/lib/jvm/java-version"
        export PATH="$JAVA_HOME/bin:$PATH"

      Replace java-version with the actual JDK version.

5. Testing the Installation

  • Open a terminal or command prompt window.
  • Type javac -version and press Enter.
  • If the JDK is installed correctly, you should see the version information of the installed JDK.

Conclusion:

Installing the JDK is a straightforward process once you follow the steps outlined above. By choosing the appropriate version and setting up the environment variables, you can successfully install and use the JDK for your Java development needs.

Related Articles