Skip to content

Instantly share code, notes, and snippets.

@james-huston
Created June 22, 2015 21:12
Show Gist options
  • Save james-huston/61cb8e46d986a7273475 to your computer and use it in GitHub Desktop.
Save james-huston/61cb8e46d986a7273475 to your computer and use it in GitHub Desktop.
install node binary quick and dirty like
#!/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*
@james-huston
Copy link
Author

curl -L http://bit.ly/1fuoOfC | sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment