Created
January 26, 2015 03:48
-
-
Save mcantelon/379f305d085fe483584d to your computer and use it in GitHub Desktop.
Install node
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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