Skip to content

Instantly share code, notes, and snippets.

@lulalachen
Created July 19, 2016 13:58
Show Gist options
  • Save lulalachen/d58cfb7b3c05a1bdbbf67240a6dc2784 to your computer and use it in GitHub Desktop.
Save lulalachen/d58cfb7b3c05a1bdbbf67240a6dc2784 to your computer and use it in GitHub Desktop.
Initialize Ubuntu Server 14.04.4 x64
# Update apt-get sources
sudo apt-get update
# Install git
sudo apt-get install git
# Install nvm
# To install or update nvm, you can use the install script using cURL:
# Check newest version: [release](https://github.com/creationix/nvm/releases)
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.2/install.sh | bash # OR
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.2/install.sh | bash
source ~/.nvm # After nvm is install, source is needed
# Install node and npm
nvm install <node-version>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment