Last active
August 29, 2015 14:22
-
-
Save koji/0059f72db9345ef755c2 to your computer and use it in GitHub Desktop.
Install nvm & node
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
#nvm version v0.25.4 | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.25.4/install.sh | bash | |
#list node versions which can install | |
nvm ls-remote | |
#install node | |
nvm install v0.12.0 | |
#use node | |
nvm use v0.12.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment