Add instructions for installing JDK and Leiningen via SDKMAN.
This commit is contained in:
parent
3cc7b91c23
commit
aeb3d7b702
1 changed files with 21 additions and 0 deletions
21
README.md
21
README.md
|
|
@ -37,6 +37,27 @@ lein repl
|
||||||
to make sure all the dependencies get downloaded properly (and then `(exit)`
|
to make sure all the dependencies get downloaded properly (and then `(exit)`
|
||||||
when you want to quit). See below for details on the REPL.
|
when you want to quit). See below for details on the REPL.
|
||||||
|
|
||||||
|
### Installation with SDKMAN!
|
||||||
|
|
||||||
|
Ensure that you have [SDKMAN! installed](https://sdkman.io/install) on your machine.
|
||||||
|
|
||||||
|
Next run the following command to install the JDK if you don't have it installed:
|
||||||
|
|
||||||
|
```
|
||||||
|
sdk install java 8.0.201-zulu
|
||||||
|
```
|
||||||
|
|
||||||
|
Then install the latest version of Leiningen:
|
||||||
|
|
||||||
|
```
|
||||||
|
sdk install leiningen
|
||||||
|
```
|
||||||
|
|
||||||
|
As before, once you've cloned this repo and installed the SDKs you can run:
|
||||||
|
|
||||||
|
```
|
||||||
|
lein repl
|
||||||
|
```
|
||||||
|
|
||||||
### Installation with Vagrant
|
### Installation with Vagrant
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue