Created
June 25, 2013 07:01
-
-
Save vparihar01/5856524 to your computer and use it in GitHub Desktop.
How to fix: Nokogiri Incompatible library version: nokogiri.bundle requires version 11.0.0 or later, but libxml2.2.dylib provides version 10.0.0.
dlopen bundle.open. Using homebrew on lion to install nokogiri and lixml
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
FIXME: | |
WARNING: Nokogiri was built against LibXML version 2.7.3, but has dynamically loaded 2.7.8 | |
or | |
ERROR -: Incompatible library version: nokogiri.bundle requires version 11.0.0 or later, but libxml2.2.dylib provides version 10.0.0 | |
gem uninstall nokogiri libxml-ruby | |
brew update | |
brew uninstall libxml2 | |
brew install libxml2 --with-xml2-config | |
brew link --force libxml2 | |
brew install libxslt | |
brew link --force libxslt | |
bundle config build.nokogiri -- --with-xml2-dir=/usr --with-xslt-dir=/opt/local --with-iconv-dir=/opt/local | |
bundle install |
Thanks you !! Very helpful
after all this time ... this still works in January 2018 ......
thank you so much!!!!!!!!!!
Woot! This worked for me.
Thanks, this is still solving issues after all this time!
2020 and this is still solving issues, thank you!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
saved my day! thanks a bunch