Skip to content

Instantly share code, notes, and snippets.

@wizardnet972
Created January 11, 2018 14:14
Show Gist options
  • Select an option

  • Save wizardnet972/f4f8f672027b0d0acea05732a97c8d8f to your computer and use it in GitHub Desktop.

Select an option

Save wizardnet972/f4f8f672027b0d0acea05732a97c8d8f to your computer and use it in GitHub Desktop.
install nodejs on aws
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