Created
October 17, 2017 06:55
-
-
Save bruceh48/55894093a2c76fb4655e7dc22881bd23 to your computer and use it in GitHub Desktop.
This file contains 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
1. Download the nvm install script via cURL: | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash | |
2. Ensure that nvm was installed correctly with nvm --version, which should return the version of nvm installed. | |
3. Install the version of Node.js you want | |
Install the latest version with | |
nvm install node | |
Use the latest version with | |
nvm use node | |
Install the latest LTS version with | |
nvm install --lts | |
Use the latest LTS verison with | |
nvm use --lts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment