1
0
Fork 1

install sbt

main
jebba 2021-12-22 13:56:56 -07:00
parent a730c2f126
commit 227982a01c
1 changed files with 18 additions and 0 deletions

View File

@ -402,9 +402,27 @@ sudo apt install nodejs
sudo apt clean
```
### Install SBT
Install SBT thusly:
```
# Set up repos
echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | sudo tee /etc/apt/sources.list.d/sbt.list
echo "deb https://repo.scala-sbt.org/scalasbt/debian /" | sudo tee /etc/apt/sources.list.d/sbt_old.list
# Add repo key
curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823" | sudo apt-key add
# Update repo, install, and clean.
sudo apt update
sudo apt install sbt
sudo apt clean
```
### Install Yarn
Install Yarn thusly: