Ubuntu 18 Install Nvm Code Example


Example 1: install node js ubuntu

sudo apt-get install curl curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash - sudo apt-get install nodejs # Check node version node -v  # v13.9.0 # Also, check the npm version npm -v  # 6.13.7

Example 2: install nvm ubuntu

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm. Now you can use nvm

Example 3: ubuntu 18 install nodejs

cd ~ curl -sL https://deb.nodesource.com/setup_12.x -o nodesource_setup.sh sudo bash nodesource_setup.sh sudo apt install nodejs nodejs -v # shows your version

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?