Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

If you are getting "nvm: command not found" error while trying to install nvm using Brew, then you can try the following steps:

  1. First, uninstall any existing versions of nvm by running the following command:

    rm -rf ~/.nvm
    
  2. Then, reinstall nvm using the following command:

    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
    

    This will install the latest version of nvm.

  3. Once the installation is complete, open a new terminal window or run the following command to reload your shell:

    source ~/.bash_profile
    
  4. Finally, check if nvm is installed correctly by running the following command:

    command -v nvm
    

    If everything is working correctly, it should output "/Users/your-username/.nvm/nvm.sh" or something similar.

Note: Make sure to replace "your-username" in step 4 with your actual username.