Skip to content

Instantly share code, notes, and snippets.

@pid
Created January 12, 2014 16:17
Show Gist options
  • Select an option

  • Save pid/8386675 to your computer and use it in GitHub Desktop.

Select an option

Save pid/8386675 to your computer and use it in GitHub Desktop.
install nodejs on raspberry pi
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install git-core build-essential python libssl-dev
sudo git config --global http.sslVerify false
cd /opt
sudo git clone https://github.com/joyent/node.git
cd node
sudo git checkout v0.10.24
sudo ./configure
sudo make
sudo make install
echo "export PATH=\$PATH:/opt/node/bin" >> ~/.profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment