Last active
October 7, 2019 17:59
-
-
Save Faizanq/9bc9c7cb08fa04b3b21c76a3aa0906d2 to your computer and use it in GitHub Desktop.
Node Version Install
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
| Step 1 – Add Node.js PPA | |
| curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - | |
| Step 2 – Install Node.js on Ubuntu | |
| sudo apt-get install nodejs | |
| Step 3 | |
| sudo apt-get update | |
| sudo apt-get install build-essential libssl-dev | |
| Step 4 | |
| How To Install Using NVM | |
| curl -sL https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh -o install_nvm.sh | |
| bash install_nvm.sh | |
| To gain access to the nvm functionality, you'll need to log out and log back in again, | |
| nvm ls-remote | |
| nvm install 8.9.4 | |
| nvm use 8.9.4 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment