Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.32 KB

README_SETUP_LINUX.md

File metadata and controls

40 lines (26 loc) · 1.32 KB

Setup Editor - Linux

Required Software

Required Software - Java JDK 17

Download and install the latest JDK 17 (17.0.5+8 or later) release from either of these locations:

  • Adoptium/Temurin - The Adoptium Working Group promotes and supports high-quality runtimes and associated technology for use across the Java ecosystem
  • Microsoft OpenJDK builds - The Microsoft Build of OpenJDK is a no-cost distribution of OpenJDK that's open source and available for free for anyone to deploy anywhere
  • or from apt-get:
> sudo apt-get install openjdk-17-jdk

When Java is installed you may also add need to add java to your PATH and export JAVA_HOME:

> nano ~/.bashrc

export JAVA_HOME=<JAVA_INSTALL_PATH>
export PATH=$JAVA_HOME/bin:$PATH

Verify that Java is installed and working:

> javac -version

Notes

If you are using IntelliJ for lein tasks, you will need to first add the new SDK (file->project structure/SDKs) and then set the project SDK setting (file->project structure/Project) to the new version.

Required Software - Leiningen