Skip to content

Instantly share code, notes, and snippets.

@paulsheldrake
Created July 31, 2013 16:23
Show Gist options
  • Save paulsheldrake/6123592 to your computer and use it in GitHub Desktop.
Save paulsheldrake/6123592 to your computer and use it in GitHub Desktop.
Install NodeJS on CentOS 6. In one line...
yum -y update && yum -y groupinstall "Development Tools" && cd /usr/src && wget http://nodejs.org/dist/v0.10.15/node-v0.10.15.tar.gz && tar zxf node-v0.10.15.tar.gz && cd node-v0.10.15 && ./configure && make && sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment