Last active
August 29, 2015 13:57
-
-
Save thiphariel/9853020 to your computer and use it in GitHub Desktop.
nodejs install
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
| #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