Skip to content

Instantly share code, notes, and snippets.

@sethlilly
Created July 18, 2013 14:56
Show Gist options
  • Save sethlilly/6030016 to your computer and use it in GitHub Desktop.
Save sethlilly/6030016 to your computer and use it in GitHub Desktop.
Installs curl, git, npm and node on a freshly-created Vagrant VM. Uses TJ Holowaychuk's n to install and manage node versions.
#!/bin/bash
# Set up the environment after installing the Vagrant machine
# Basic utilities
sudo apt-get install curl -y
sudo apt-get install git -y
# Node
sudo apt-get install npm -y
sudo npm install -g n
sudo n stable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment