Skip to content

Instantly share code, notes, and snippets.

@dnavarrom
Last active July 13, 2020 04:49
Show Gist options
  • Save dnavarrom/0b7c1e23d381269aa0a2870d51ff37b9 to your computer and use it in GitHub Desktop.
Save dnavarrom/0b7c1e23d381269aa0a2870d51ff37b9 to your computer and use it in GitHub Desktop.
To install Node.js using nvm under Linux [Ubuntu / Mint 20] - 2020
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