Skip to content

Instantly share code, notes, and snippets.

@bingeboy
Created March 28, 2014 17:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bingeboy/9838757 to your computer and use it in GitHub Desktop.
Save bingeboy/9838757 to your computer and use it in GitHub Desktop.
How to install nodejs on ARM chipset
$ 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