Skip to content

Instantly share code, notes, and snippets.

@fabianosarracco
Created September 23, 2015 09:52
Show Gist options
  • Save fabianosarracco/95188e1cf76ca08c6385 to your computer and use it in GitHub Desktop.
Save fabianosarracco/95188e1cf76ca08c6385 to your computer and use it in GitHub Desktop.
NodeJS installation script for Raspbian.
#!/bin/sh
mkdir /tmp/src
cd /tmp/src
rm node-v0.12.7.tar.gz
rm -rf node-v0.12.7
wget http://nodejs.org/dist/v0.12.7/node-v0.12.7.tar.gz
tar -xzvf node-v0.12.7.tar.gz
cd node-v0.12.7
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment