Created
November 16, 2017 13:45
-
-
Save cookie-ag/cb4301e066bb807e5579c1e278c7b0e4 to your computer and use it in GitHub Desktop.
Install / Uninstall Node on OSX
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
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | sudo bash | |
nvm install node | |
nvm run node --version |
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
brew uninstall node; | |
# or `brew uninstall --force node` which removes all versions | |
brew prune; | |
rm -f /usr/local/bin/npm /usr/local/lib/dtrace/node.d; | |
rm -rf ~/.npm; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment