[Fix] zsh: command not found: nvm


If you recently installed nvm - Node Version Manager package using brew and when you run the nvm command you get - zsh: command not found: nvm on your macOS system. Well, the reason is you have not set the zsh profile file to locate the installed nvm package.

Let's see what we see when we install nvm using the command: brew install nvm

code2care@mac ~ % brew install nvm
==> Downloading https://github.com/creationix/nvm/archive/v0.38.0.tar.gz
Already downloaded: /Users/code2care/Library/Caches/Homebrew/downloads/1956ad942b9ae30bf5f0d9ccb61b90c5ae466dc790b470b5f766eed629b43947--nvm-0.38.0.tar.gz
==> Caveats
Please note that upstream has asked us to make explicit managing
nvm via Homebrew is unsupported by them and you should check any
problems against the standard nvm install method prior to reporting.

You should create NVM's working directory if it doesn't exist:

  mkdir ~/.nvm

Add the following to ~/.zshrc or your desired shell
configuration file:

  export NVM_DIR="$HOME/.nvm"
  [ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && . "/opt/homebrew/opt/nvm/nvm.sh" 
   # This loads nvm
  [ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && .
   "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm"  
  # This loads nvm bash_completion

You can set $NVM_DIR to any location, but leaving it unchanged from
/opt/homebrew/opt/nvm will destroy any nvm-installed Node installations
upon upgrade/reinstall.

Type `nvm help` for further information.
==> Summary
🍺  /opt/homebrew/Cellar/nvm/0.38.0: 7 files, 176KB, built in 1 second

As you can see in the installation logs, you need to update the .zshrc file with the NVM details after you create .nvm file under ~/ location.


How to fix nvm not found error:

  1. Execute command: mkdir ~/.nvm
  2. Run command: brew --prefix nvm to know the installation location.
    code2care@mac ~ % brew --prefix nvm
    /opt/homebrew/opt/nvm
  3. Open zsh profile file: nano ~/.zshrc
  4. Add the below line to the file:
    export NVM_DIR="$HOME/.nvm" 
    . "/opt/homebrew/opt/nvm/nvm.sh"
  5. Save the changes: Control + X followed by Y Key.
  6. Update changes: source ~/.zshrc
  7. Now try to run nvm commands: example: nvm list
nvm command not found zsh - brew installation
nvm command not found zsh - brew installation

Install nvm using package manager


Note: You should have cURL installed or else you may get "zsh: command not found curl" error!

Facing issues? Have Questions? Post them here! I am happy to answer!

Author Info:

Rakesh (He/Him) has over 14+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org

Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap