Created
June 22, 2015 21:12
-
-
Save james-huston/61cb8e46d986a7273475 to your computer and use it in GitHub Desktop.
install node binary quick and dirty like
This file contains 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
#!/bin/bash | |
cd /tmp | |
wget http://nodejs.org/dist/v0.12.5/node-v0.12.5-linux-x64.tar.gz | |
tar -xvzf node-v0.12.5-linux-x64.tar.gz | |
sudo cp -r node-v0.12.5-linux-x64/bin/* /usr/local/bin/ | |
sudo cp -r node-v0.12.5-linux-x64/lib/* /usr/local/lib/ | |
rm -rf /tmp/node-v0.12.5* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
curl -L http://bit.ly/1fuoOfC | sh