Update Building-Fleet.md (#14761)

Fixing build instructions for Ubuntu as the previous instructions
install an incompatible version of npm / nodejs
This commit is contained in:
George Karr 2023-11-03 14:53:02 -05:00 committed by GitHub
parent 2cc20ab259
commit 93a4e9cc2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,6 +35,10 @@ Install dependencies:
```sh ```sh
sudo apt-get install -y git golang make nodejs npm sudo apt-get install -y git golang make nodejs npm
sudo npm install -g yarn sudo npm install -g yarn
# Install nvm to manage node versions (apt very out of date) https://github.com/nvm-sh/nvm#install--update-script
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
# refresh your session before continuing
nvm install v19.7.0
``` ```
#### Windows #### Windows