Update README.md

I ran into an issue installing NVM on my Mac Book Pro.  I appended the nvm install instructions with the command to fix the scenario I ran into.
This commit is contained in:
bluisana 2023-01-28 12:07:02 -05:00 committed by GitHub
parent edacf8275e
commit 9027938aaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,6 +94,13 @@ nvm is a version manager for [node.js](https://nodejs.org/en/), designed to be i
### Install & Update Script
To **install** or **update** nvm, you should run the [install script][2]. To do that, you may either download and run the script manually, or use the following cURL or Wget command:
If you are on a MAC and using a zsh terminal run this command first.
```sh
touch ~/.zshrc
```
```sh
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
```