Skip to content

Instantly share code, notes, and snippets.

@evocateur
Created December 20, 2011 01:36
Show Gist options
  • Save evocateur/1499819 to your computer and use it in GitHub Desktop.
Save evocateur/1499819 to your computer and use it in GitHub Desktop.
A script to install nodejs v0.4.12 on Ubuntu
#!/bin/sh
apt-get -y update
apt-get -y install libssl-dev git-core pkg-config build-essential curl gcc g++
mkdir /tmp/node-install
cd /tmp/node-install
wget http://nodejs.org/dist/node-v0.4.12.tar.gz
tar -zxf node-v0.4.12.tar.gz
cd node-v0.4.12
./configure && make && make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment