NVM

  1. Install Curl

sudo apt install curl 
  1. Install NVM

curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash 
  1. Set ENV

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion

Last updated

Was this helpful?