Skip to content

Instantly share code, notes, and snippets.

@enjoylife
Created August 4, 2012 08:16
Show Gist options
  • Save enjoylife/3255841 to your computer and use it in GitHub Desktop.
Save enjoylife/3255841 to your computer and use it in GitHub Desktop.
install script for node on debian
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