From 9027938aaf17e4388e226d4ebdfe85b5c7413f37 Mon Sep 17 00:00:00 2001 From: bluisana Date: Sat, 28 Jan 2023 12:07:02 -0500 Subject: [PATCH] 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. --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 50803c3..1c5cf24 100644 --- a/README.md +++ b/README.md @@ -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 ```