Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 935 Bytes

README_SETUP_LINUX.md

File metadata and controls

21 lines (13 loc) · 935 Bytes

Setup Editor - Linux

Required Software

Required Software - Java JDK 11

  • Download Linux version and extract it somewhere
  • Run sudo update-alternatives --install "/usr/bin/java" "java" "/path/to/jdk/bin/java" 1102
  • Run sudo update-alternatives --install "/usr/bin/javac" "javac" "/path/to/jdk/bin/javac" 1102
  • If required, switch to new version using sudo update-alternatives --config java and sudo update-alternatives --config javac

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