Home > Net >  zsh command not found [ nvm command not found after install successfully in macOs ]
zsh command not found [ nvm command not found after install successfully in macOs ]

Time:04-25

brew install nvm

I am installed successfully NVM in my macOs. But also then after I got NVM command not found error.

CodePudding user response:

Reinstall nvm again.

brew reinstall nvm

create the .zshrc file.

vi ~/.zshrc

Paste code which I am write here

# NVM Akash Stuff
export NVM_DIR="$HOME/.nvm"
. "/usr/local/opt/nvm/nvm.sh"
  • Related