Install JDK 11

Share

Install JDK 11

To install the Java Development Kit (JDK) 11 on your computer, you can follow these steps. The installation process may vary depending on your operating system (Windows, macOS, or Linux):

For Windows:

  1. Visit the Oracle JDK download page for Java 11: Oracle JDK 11 Downloads

  2. Scroll down to the “Oracle JDK” section and download the installer for Windows.

  3. Run the installer and follow the installation wizard’s instructions.

  4. During the installation, you may be asked to choose a destination directory for the JDK installation. Note this directory as you may need it later.

  5. Once the installation is complete, open a command prompt and type the following command to verify the installation:

    shell
    java -version

    You should see output confirming that you have JDK 11 installed.

For macOS:

  1. On macOS, you can use Homebrew to install JDK 11. If you don’t have Homebrew installed, you can install it by following the instructions at Homebrew.

  2. Open a terminal window.

  3. Install JDK 11 using Homebrew by running the following command:

    shell
    brew tap adoptopenjdk/openjdk
    brew cask install adoptopenjdk11

    This command will tap into the AdoptOpenJDK repository and install JDK 11.

  4. After the installation is complete, you can verify it by running:

    shell
    java -version

For Linux (Ubuntu as an example):

  1. Open a terminal window.

  2. Update the package list to ensure you have the latest information about available packages:

    shell
    sudo apt update
  3. Install JDK 11 using the following command:

    shell
    sudo apt install openjdk-11-jdk
  4. After the installation is complete, you can verify it by running:

    shell
    java -version

That’s it! You’ve successfully installed JDK 11 on your computer. You can now use it for your Java development and execution needs.

Demo Day 1 Video:

 
You can find more information about Java in this Java Docs Link

 

Conclusion:

Unogeeks is the No.1 Training Institute for Java Training. Anyone Disagree? Please drop in a comment

You can check out our other latest blogs on Java Training here – Java Blogs

You can check out our Best in Class Java Training details here – Java Training

💬 Follow & Connect with us:

———————————-

For Training inquiries:

Call/Whatsapp: +91 73960 33555

Mail us at: info@unogeeks.com

Our Website ➜ https://unogeeks.com

Follow us:

Instagram: https://www.instagram.com/unogeeks

Facebook: https://www.facebook.com/UnogeeksSoftwareTrainingInstitute

Twitter: https://twitter.com/unogeeks


Share

Leave a Reply

Your email address will not be published. Required fields are marked *