Last active
July 13, 2020 04:49
-
-
Save dnavarrom/0b7c1e23d381269aa0a2870d51ff37b9 to your computer and use it in GitHub Desktop.
To install Node.js using nvm under Linux [Ubuntu / Mint 20] - 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash | |
source ~/.profile | |
nvm ls-remote | |
nvm install 12.18.2 | |
nvm use 12.18.2 | |
node -v | |
npm -v | |
##Edit version | |
nvm alias default 12.18.2 | |
nvm use default | |
##Remove Nodejs | |
nvm current | |
nvm deactivate | |
nvm uninstall node_version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment