Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 671 Bytes

File metadata and controls

23 lines (18 loc) · 671 Bytes

Install java

Always install the current LTS version (Long-term support)

Check if you have java installed

Run this command in a terminal/commandline to find out:
java -version

Mac

  • Have brew installed: https://brew.sh/
  • Run this command in a terminal/commandline
    brew cask install java
  • Check if it is installed now

Ubuntu

  • Run this command in a terminal/commandline
    sudo apt install default-jdk
  • Check if it is installed now

Windows