Skip to content

Instantly share code, notes, and snippets.

@michealbenedict
Created July 10, 2012 20:55
Show Gist options
  • Save michealbenedict/3086178 to your computer and use it in GitHub Desktop.
Save michealbenedict/3086178 to your computer and use it in GitHub Desktop.
install node js
#!/usr/bin/env bash
mkdir -p tmp-src
cd tmp
wget http://nodejs.org/dist/v0.8.2/node-v0.8.2.tar.gz
tar -xvf node-v0.8.2.tar.gz
cd node-v0.8.2
./configure
make
sudo make install
cd .. && rm -rf tmp-src
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment