Skip to content

Instantly share code, notes, and snippets.

@scottames
Created January 22, 2015 05:11
Show Gist options
  • Save scottames/7648b87a7930ce99eb85 to your computer and use it in GitHub Desktop.
Save scottames/7648b87a7930ce99eb85 to your computer and use it in GitHub Desktop.
# Fix npm brew installation
```
brew update
brew uninstall node
brew install node
sudo brew postinstall node # brew error message provided this recommendation; only worked with sudo
```
to test that npm is working (tho appears to build an index, which not everyone may want):
```npm search # returns long list of packages```
Source: @ownsourcing https://github.com/npm/npm/issues/3125
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment