Last active
October 9, 2015 08:48
-
-
Save koostudios/3472910 to your computer and use it in GitHub Desktop.
JumpStart Script: NodeJS
This file contains hidden or 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 | |
# JumpStart NodeJS on Ubuntu - installs NodeJS. Copy the following line and run! | |
# wget https://raw.github.com/gist/3472910/jumpstart-node.sh && sudo chmod +x jumpstart-node.sh && sudo ./jumpstart-node.sh | |
sudo apt-get update | |
sudo apt-get install make g++ python git libssl-dev | |
git clone git://github.com/joyent/node.git | |
cd node | |
git checkout v0.10.26 | |
./configure | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment