From 336154d9a7c9fec8f7511c4f010aafab9222c224 Mon Sep 17 00:00:00 2001 From: jgfichte Date: Sat, 15 Jan 2022 10:52:19 -0500 Subject: [PATCH] Add link to nvm instructions and updated version --- .../tutorials/getting-started-mac/installing-nvm/en.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/markdown/dev/tutorials/getting-started-mac/installing-nvm/en.md b/markdown/dev/tutorials/getting-started-mac/installing-nvm/en.md index eef75f0bd7e..9bedb11bde9 100644 --- a/markdown/dev/tutorials/getting-started-mac/installing-nvm/en.md +++ b/markdown/dev/tutorials/getting-started-mac/installing-nvm/en.md @@ -8,22 +8,24 @@ FreeSewing is built with [Node.js](https://nodejs.org/), a JavaScript runtime. You'll need to install Node JS on your system, and to do so, we'll use [nvm](https://github.com/nvm-sh/nvm), short for _Node version manager_. -Using nvm has a number few benefits in comparison with installing Node from -the node.js website, or from a package providide by your linux distribution: +Using nvm has a number of benefits in comparison with installing Node from +the node.js website, or from a package provided by Homebrew or your OS distribution: - You can easily switch between different Node versions - Everything gets installed in your home folder, avoiding permission problems +The latest instructions for setting up nvm can be found [here](https://github.com/nvm-sh/nvm#installing-and-updating). If you want to just skip to the commands that most likely work, keep reading. + To setup nvm, run the following command in a terminal window: ```bash -curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash +curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash ``` If you don't have `curl` on your system, here's an alternative approach using `wget`: ```bash -wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash +wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash ``` After the script is completed, try running the following command: