Answers for "remove node and install nvm"

0

how to remove nvm

Essentially you'd need to reverse the steps in install.sh - remove any nvm lines from ~/.bash_profile (and/or ~/.profile), rm -rf ~/.nvm, and either reopen your shell, or re-source your bash profile.

However, simply removing the nvm commands from your .bash_profile or .profile should be more than sufficient.

someone else said this:

rm -rf ~/.nvm
rm -rf ~/.npm
rm -rf ~/.bower
Posted by: Guest on December-29-2020
1

remove nvm version

$ nvm uninstall 8.8.1
Posted by: Guest on October-13-2021
0

nvm remove node version

//removing manually:

cd ~/.nvm/versions/node
sudo rm -rf v4.2.3/
Posted by: Guest on February-09-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language