Last active
June 18, 2017 07:34
-
-
Save FintanK/96db30b29f6e6bc7d654fe9e1eee0f1b to your computer and use it in GitHub Desktop.
Install specific versions of Node.js with NVM
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
NVM | |
Install NVM | |
> curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash | |
> export NVM_DIR="$HOME/.nvm" | |
> [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm | |
> command -v nvm # verifies install | |
> nvm install node | |
> nvm run node v1.2.3 | |
https://github.com/creationix/nvm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment