Skip to content

Instantly share code, notes, and snippets.

@olegp
Created December 6, 2011 11:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save olegp/1437859 to your computer and use it in GitHub Desktop.
Save olegp/1437859 to your computer and use it in GitHub Desktop.
Bash script to install Node.js on Ubuntu from launchpad
# install node and node-dev (needed by node-fibers)
apt-get install python-software-properties curl -y
add-apt-repository ppa:chris-lea/node.js-devel <<EOF
EOF
apt-get update
apt-get install nodejs -y
apt-get install build-essential -y
apt-get install nodejs-dev -y
ln -s /usr/include/nodejs /usr/include/node
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment