Created
January 11, 2018 14:14
-
-
Save wizardnet972/f4f8f672027b0d0acea05732a97c8d8f to your computer and use it in GitHub Desktop.
install nodejs on aws
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
| sudo apt-get update | |
| sudo apt-get install libssl-dev g++ make | |
| curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | bash | |
| . ~/.nvm/nvm.sh | |
| nvm install node | |
| nvm use node | |
| node -e "console.log('Running Node.js ' + process.version)" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment