Skip to content

Instantly share code, notes, and snippets.

@cbebry
Forked from mikeal/install.bash
Created May 24, 2014 03:07
Show Gist options
  • Save cbebry/ca92e19adac70f6cd2c0 to your computer and use it in GitHub Desktop.
Save cbebry/ca92e19adac70f6cd2c0 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "Finding latest version."
VERSION=`curl -s http://nodejs.org/dist/latest/SHASUMS.txt | awk '/node-v/ {print $2}' | head -1 | sed s/node-v// | sed s/-/\ / | awk '{print $1}'`
echo "Preparing to install node-v$VERSION"
url="http://nodejs.org/dist/v"$VERSION"/node-v"$VERSION".tar.gz"
echo "GET" $url
curl $url | tar -zxf -
cd "node-v"$VERSION
# Doing Deps
echo "Installing deps."
# For some reason everything after apt-get requires explicit &&
apt-get -y install build-essential openssl libssl-dev pkg-config &&
echo "Finished deps." &&
# Time to Install
./configure &&
make &&
make install &&
cd .. &&
rm -rf node-v$VERSION &&
node --version &&
exit
curl -s https://gist.githubusercontent.com/mikeal/4eaae8d796c6bf486154/raw/install.bash | bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment