Created
January 12, 2014 16:17
-
-
Save pid/8386675 to your computer and use it in GitHub Desktop.
install nodejs on raspberry pi
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
| 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