1
0
Fork 1

install node

main
jebba 2021-12-22 13:52:59 -07:00
parent 7c3ccadd69
commit a730c2f126
1 changed files with 12 additions and 3 deletions

View File

@ -340,16 +340,16 @@ Install the following dependencies from Debian's repos:
```
sudo apt update
sudo apt install git openjdk-11-jre-headless python2 redis-server
sudo apt install build-essential git openjdk-11-jre-headless python2 redis-server
```
Note: Docs say `python2` is needed, but is that still correct?
## Install External Dependencies
Lila has quite a few dependencies, many of which are outside
of distribution's repositories. Sometimes the dependency exists
of distributions' repositories. Sometimes the dependency exists
in the repo, but it is the wrong version. So we'll need to install
these dependencies:
these dependencies from external repositories:
* `mongodb`
* `node`
@ -392,6 +392,15 @@ sudo tail -f /var/log/mongodb/mongod.log
### Install Node
Install Node thusly:
```
# Setup repos with their script
curl -fsSL https://deb.nodesource.com/setup_12.x | sudo bash -
# Install it
sudo apt install nodejs
sudo apt clean
```
### Install SBT
Install SBT thusly: