Created
January 22, 2015 05:11
-
-
Save scottames/7648b87a7930ce99eb85 to your computer and use it in GitHub Desktop.
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
# 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