Skip to content

Instantly share code, notes, and snippets.

@fivetanley
Created May 5, 2012 19:38
Show Gist options
  • Save fivetanley/2605008 to your computer and use it in GitHub Desktop.
Save fivetanley/2605008 to your computer and use it in GitHub Desktop.
Node Install Script Ubuntu 12.04 LTS
#!/bin/bash
sudo apt-get install build-essential git vim libssl-dev
wget http://nodejs.org/dist/v0.6.17/node-v0.6.17.tar.gz
tar xvf node-*.tar.gz
cd node-*
./configure
make && sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment