Skip to content

Instantly share code, notes, and snippets.

@mgruesbeck
Last active August 29, 2015 14:03
Show Gist options
  • Save mgruesbeck/6ff7bc66c90d831d8757 to your computer and use it in GitHub Desktop.
Save mgruesbeck/6ff7bc66c90d831d8757 to your computer and use it in GitHub Desktop.
Install/uninstall node
// node creator recommends source compile to install node. Don't use package managers
// copy desired node version. Pre-release at git and stable at node home site.
git clone git://github.com/ry/node.git
cd node
./configure
make
sudo make install
// to uninstall use above code for your node version. Stop after running ./configure
sudo make unintall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment