Created
May 5, 2012 19:38
-
-
Save fivetanley/2605008 to your computer and use it in GitHub Desktop.
Node Install Script Ubuntu 12.04 LTS
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 | |
sudo apt-get install build-essential git vim libssl-dev | |
wget http://nodejs.org/dist/v0.6.17/node-v0.6.17.tar.gz | |
tar xvf node-*.tar.gz | |
cd node-* | |
./configure | |
make && sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment