Created
August 4, 2012 08:16
-
-
Save enjoylife/3255841 to your computer and use it in GitHub Desktop.
install script for node on debian
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
apt-get install python g++; | |
mkdir ~/nodejs && cd $_; | |
wget -N http://nodejs.org/dist/node-latest.tar.gz; | |
tar xzvf node-latest.tar.gz && cd `ls -rd node-v*`; | |
make install; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment