Last active
August 29, 2015 14:03
-
-
Save mgruesbeck/6ff7bc66c90d831d8757 to your computer and use it in GitHub Desktop.
Install/uninstall node
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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