Skip to content

Instantly share code, notes, and snippets.

@ronny
Last active February 10, 2016 19:05
Show Gist options
  • Save ronny/5035800 to your computer and use it in GitHub Desktop.
Save ronny/5035800 to your computer and use it in GitHub Desktop.
Nokogiri with libxml2 installed via homebrew -- should fix "WARNING: Nokogiri was built against LibXML version 2.7.8, but has dynamically loaded 2.9.0"
brew install libxml2 libxslt libiconv
brew link --force libxml2 libxslt libiconv
gem install nokogiri -v 1.6.2 -- --use-system-libraries
brew unlink libiconv libxml2 libxslt
@dopa
Copy link

dopa commented May 24, 2013

This solution worked for me (on May 24, 2013):
https://coderwall.com/p/o5ewia

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment