Update install.md

Update Node.js installation
This commit is contained in:
Rene Glembotzky 2023-11-04 13:10:56 +01:00 committed by GitHub
parent 959013f27c
commit 97af454806
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -26,7 +26,11 @@ apt install -y curl wget gnupg apt-transport-https lsb-release ca-certificates
#### Node.js {#node-js}
```bash
curl -sL https://deb.nodesource.com/setup_16.x | bash -
mkdir -p /etc/apt/keyrings
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
NODE_MAJOR=16
apt-get update
apt-get install nodejs -y
```
#### PostgreSQL {#postgresql}