【问题标题】:Nokogiri 1.5.9 gem does not install on Mac OS X Mavericks?Nokogiri 1.5.9 gem 没有安装在 Mac OS X Mavericks 上?
【发布时间】:2013-11-07 18:03:52
【问题描述】:

昨晚我的系统更新为 Maverick,现在我无法从我的 gemfile 安装 Nokogiri。它抱怨找不到 libxml2,但 Maverick 附带了 libxml2。我也试过了

brew install --development libxml2

还有:

brew install --development libxslt

我仍然看到相同的错误消息。我已经粘贴了下面的错误消息,有人可以看看并告诉我接下来应该尝试什么吗?

mapte:config-renderer mapte$  gem install nokogiri -v '1.5.9'
Building native extensions.  This could take a while...
ERROR:  Error installing nokogiri:
        ERROR: Failed to build gem native extension.

        /usr/local/var/rbenv/versions/1.9.2-p180/bin/ruby extconf.rb
checking for libxml/parser.h... no
-----
libxml2 is missing.  please visit http://nokogiri.org/tutorials/installing_nokogiri.html             for help with installing dependencies.
-----
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers.  Check the mkmf.log file for more
details.  You may need configuration options.

Provided configuration options:
        --with-opt-dir
    --without-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --ruby=/usr/local/var/rbenv/versions/1.9.2-p180/bin/ruby
    --with-zlib-dir
    --without-zlib-dir
        --with-zlib-include
        --without-zlib-include=${zlib-dir}/include
        --with-zlib-lib
        --without-zlib-lib=${zlib-dir}/lib
        --with-iconv-dir
        --without-iconv-dir
        --with-iconv-include
        --without-iconv-include=${iconv-dir}/include
        --with-iconv-lib
        --without-iconv-lib=${iconv-dir}/lib
        --with-xml2-dir
        --without-xml2-dir
        --with-xml2-include
        --without-xml2-include=${xml2-dir}/include
        --with-xml2-lib
        --without-xml2-lib=${xml2-dir}/lib
        --with-xslt-dir
        --without-xslt-dir
        --with-xslt-include
    --without-xslt-include=${xslt-dir}/include
    --with-xslt-lib
    --without-xslt-lib=${xslt-dir}/lib
    --with-libxslt-config
    --without-libxslt-config
    --with-pkg-config
    --without-pkg-config
    --with-libxml-2.0-config
    --without-libxml-2.0-config
    --with-libiconv-config
        --without-libiconv-config


Gem files will remain installed in /usr/local/var/rbenv/versions/1.9.2-
p180/lib/ruby/gems/1.9.1/gems/nokogiri-1.5.9 for inspection.
Results logged to /usr/local/var/rbenv/versions/1.9.2-p180/lib/ruby/gems/1.9.1/gems/nokogiri-1.5.9/ext/nokogiri/gem_make.out 

【问题讨论】:

  • 这可能是jackling建议的,更新开发工具xcode-select --install

标签: ruby macos rubygems


【解决方案1】:

对我来说,我必须安装开发者工具:

  xcode-select --install

然后确保打开 xcode 应用并接受许可。
我尝试从命令行执行此操作,但没有成功。

【讨论】:

    【解决方案2】:

    我要检查的第一件事是您的 /usr/include 不为空或缺少 libxml2.h 并考虑符号链接或以其他方式将您的 Xcode SDK /usr/include 暴露给 hombrew 进程:

    应用商店版本如下,但您可以随意调整您可能希望使用的 beta/pre-release/GM/旧版本 Xcode 的路径,提供 parser.h 文件:

     /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/usr/include/libxml2/libxml/parser.h
    

    下一步将确保自制程序与典型的三步舞保持同步:

     brew update
     brew outdated
     brew upgrade
    

    此时,您可能需要根据您在问题中粘贴的输出实际列出 mkmf.log 文件中的确切错误消息。

    【讨论】:

    • 检查了我的 /usr/include 目录,所有的库都在那里。 Brew完全更新,所有过时的配方都升级了。 Xcode 更新,命令行工具安装。没运气。仍然抱怨缺少 libxml2
    • 您查看错误了吗?我编辑了我的答案,因为我询问的细节显然太模糊了。
    • 我不能告诉你我是如何修复它的,因为我真的不知道。不幸的是,这不是此页面上列出的任何答案。
    猜你喜欢
    • 2014-06-17
    • 2014-03-20
    • 2015-03-19
    • 2014-01-01
    • 1970-01-01
    • 2014-12-25
    • 2013-11-11
    • 2013-11-17
    • 1970-01-01
    相关资源
    最近更新 更多