$ brew install libyaml
==> Downloading http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz
Already downloaded: /Library/Caches/Homebrew/libyaml-0.1.4.tar.gz
==> ./configure --prefix=/usr/local/Cellar/libyaml/0.1.4
==> make install
Warning: Could not link libyaml. Unlinking...
Error: The `brew link` step did not complete successfully
The formula built, but is not symlinked into /usr/local
You can try again using `brew link libyaml'
==> Summary
相关问题
- How do I undo `brew link --force openssl` on mac y
- Installing Wine on Mac OS Catalina. Error: No avai
- Install pipenv using brew on Python 3.6
- How to install openjdk with brew? [closed]
- How to completely uninstall brew and re-install br
相关文章
- OSX proxy issue with homebrew install
- dyld: lazy symbol binding failed: Symbol not found
- Error message for virtualenvwrapper on OS X Lion
- Git cloning error: 'fatal: multiple updates fo
- brew or pip - install credstash - errors - No name
- Error setting up the tesseract OCR in gem in rails
- How to make Brew install Vim with +clipboard?
- Brew downgrade formula to previous version (opencv
Start with
brew doctor
which will show you errors with your brew setup.You might see something like this: "Warning: /usr/local/lib/pkgconfig isn't writable."
It will give you the advice that: "You should probably chown /usr/local/lib/pkgconfig".
This means:
sudo chown {your-user-name} /usr/local/lib/pkgconfig
Then you will need to link the files with this:
brew link libyaml
If this does not work hopefully the output of
brew doctor
will give you enough to continue the search.