Skip to content

Instantly share code, notes, and snippets.

@thiphariel
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save thiphariel/9853020 to your computer and use it in GitHub Desktop.

Select an option

Save thiphariel/9853020 to your computer and use it in GitHub Desktop.
nodejs install
#Packages required to build sources :
apt-get install build-essential
#Download nodejs sources :
wget http://nodejs.org/dist/v0.10.26/node-v0.10.26.tar.gz
#Extract the tar archive :
tar zxvf node-v0.10.26.tar.gz
#Make sure gcc, g++ and make are enabled
#Compile ! :
cd node-v0.10.26
./configure
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment