Skip to content

Instantly share code, notes, and snippets.

@mcantelon
Created January 26, 2015 03:48
Show Gist options
  • Save mcantelon/379f305d085fe483584d to your computer and use it in GitHub Desktop.
Save mcantelon/379f305d085fe483584d to your computer and use it in GitHub Desktop.
Install node
#!/bin/bash
mkdir /tmp/installtemp
cd /tmp/installtemp/
sudo apt-get install -y wget
wget http://nodejs.org/dist/v0.10.35/node-v0.10.35.tar.gz
tar zxvf node-v0.10.35.tar.gz
cd node-v0.10.35
sudo apt-get install -y python
sudo apt-get update
sudo apt-get install -y build-essential
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment