Created
March 28, 2014 17:51
-
-
Save bingeboy/9838757 to your computer and use it in GitHub Desktop.
How to install nodejs on ARM chipset
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
$ cd /opt/node | |
#if don't have that dir created yet | |
$ mkdir -p /opt/node | |
$ wget http://nodejs.org/dist/v0.10.26/node-v0.10.26.tar.gz | |
$ tar -xvf node-v0.10.26.tar.gz | |
$ cd node-v0.10.26 | |
$ ./configure | |
$ sudo make | |
# note above make takes forever to build | |
$ sudo make install | |
$ node -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment