-
Notifications
You must be signed in to change notification settings - Fork 0
Installation Guide
Brandon C edited this page Nov 14, 2024
·
15 revisions
Update your package manager and install OpenJDK 20:
sudo apt-get update && sudo apt-get install -y openjdk-20-jdkSDKMAN! is a useful tool for managing Java versions. Install it by running the following commands:
curl -s "https://get.sdkman.io" | bash
source "$HOME/.sdkman/bin/sdkman-init.sh"Use SDKMAN! to install Java 20 and set it as the default:
sdk install java 20-open
sdk default java 20-openCheck if Java is installed correctly by verifying the version:
java --version