Skip to content
Xinyi Ma edited this page Nov 18, 2021 · 5 revisions

Setting Up Java

We will be mainly using jdk-11 for CS2030!

Steps (WSL/Ubuntu)

  1. Run the following command to download the following package which contains the .deb file for jdk-11.0.8
wget -c https://builds.openlogic.com/downloadJDK/openlogic-openjdk/11.0.8%2B10/openlogic-openjdk-11.0.8%2B10-linux-x64-deb.deb
  1. Install the package in order to have the Java Development kit installed in your system.
sudo apt install ./openlogic-openjdk-11.0.8+10-linux-x64-deb.deb

Steps (MacOS)

brew tap homebrew/cask-versions
brew install --cask temurin11
Clone this wiki locally