2019-08-05-在Ubuntu 16.04安装AdoptOpenJDK

DEB installation on Debian or Ubuntu

  1. Import the official AdoptOpenJDK GPG key by running the following command:

wget -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | sudo apt-key add -

  1. Import the AdoptOpenJDK DEB repository by running the following command:

sudo add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/
If you get a command not found error, try running:

apt-get install -y software-properties-common
Then repeat the first command.

  1. Refresh your package list with apt-get update and then install your chosen AdoptOpenJDK package. For example, to install OpenJDK 8 with the HotSpot VM, run:

apt-get install adoptopenjdk-8-hotspot

你可能感兴趣的:(2019-08-05-在Ubuntu 16.04安装AdoptOpenJDK)