在Ruby 2.0.0p353(基于rvm的安装)下安装Nokogiri 1.6.1失败(OSX Mavericks)?

时间:2014-01-02 19:58:56

标签: ruby nokogiri osx-mavericks

我尝试在Ruby和RVM下安装Nokogiri 1.6.1,但是失败了,出现以下错误:

Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

/Users/lmo0/.rvm/rubies/ruby-2.0.0-p353/bin/ruby extconf.rb 
Extracting libxml2-2.8.0.tar.gz into tmp/x86_64-apple-darwin13.0.0/ports/libxml2/2.8.0... OK
Running 'configure' for libxml2 2.8.0... OK
Running 'compile' for libxml2 2.8.0... OK
Running 'install' for libxml2 2.8.0... OK
Activating libxml2 2.8.0 (from /Users/lmo0/.rvm/gems/ruby-2.0.0-p353/gems/nokogiri-1.6.1/ports/x86_64-apple-darwin13.0.0/libxml2/2.8.0)...
Extracting libxslt-1.1.26.tar.gz into tmp/x86_64-apple-darwin13.0.0/ports/libxslt/1.1.26... OK
Running 'configure' for libxslt 1.1.26... ERROR, review 'tmp/x86_64-apple-darwin13.0.0/ports/libxslt/1.1.26/configure.log' to see what happened.
*** 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
    --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=/Users/lmo0/.rvm/rubies/ruby-2.0.0-p353/bin/ruby
/Users/lmo0/.rvm/gems/ruby-2.0.0-p353/gems/mini_portile-0.5.2/lib/mini_portile.rb:265:in `block in execute': Failed to complete configure task (RuntimeError)
    from /Users/lmo0/.rvm/gems/ruby-2.0.0-p353/gems/mini_portile-0.5.2/lib/mini_portile.rb:257:in `chdir'
    from /Users/lmo0/.rvm/gems/ruby-2.0.0-p353/gems/mini_portile-0.5.2/lib/mini_portile.rb:257:in `execute'
    from /Users/lmo0/.rvm/gems/ruby-2.0.0-p353/gems/mini_portile-0.5.2/lib/mini_portile.rb:65:in `configure'
    from /Users/lmo0/.rvm/gems/ruby-2.0.0-p353/gems/mini_portile-0.5.2/lib/mini_portile.rb:108:in `cook'
    from extconf.rb:101:in `block in <main>'
    from extconf.rb:131:in `call'
    from extconf.rb:131:in `block in <main>'
    from extconf.rb:122:in `tap'
    from extconf.rb:122:in `<main>'


Gem files will remain installed in /Users/lmo0/.rvm/gems/ruby-2.0.0-p353/gems/nokogiri-1.6.1 for inspection.
Results logged to /Users/lmo0/.rvm/gems/ruby-2.0.0-p353/gems/nokogiri-1.6.1/ext/nokogiri/gem_make.out

5 个答案:

答案 0 :(得分:7)

检查你的grep版本并安装最新的brew:

$ grep --version
grep (BSD grep) 2.5.1-FreeBSD

$ brew install grep --default-names

# If above fails, you probably need to tap
$ brew tap homebrew/dupes
$ brew install grep --default-names

$ grep --version
grep (GNU grep) 2.14.56-1e3d

From(this nokogiri issue)[https://github.com/sparklemotion/nokogiri/issues/935]: “最近的OSX版本附带了BSD grep,而较旧的版本附带了GNU grep。那么,你的构建脚本可能需要GNU grep”

从Maverick的评论中窃取并在此处复制作为答案,而不是评论,因为我现在已经多次遇到这个问题,并且希望能够挽救别人的头痛。 = X

答案 1 :(得分:3)

您可以尝试我目前使用的解决方案来解决相同的问题......

删除所有旧的libxml-ruby和nokogiri

使用以下命令进行相同的

sudo gem uninstall nokogiri libxml-ruby

然后你可以尝试nokogiri的版本,有问题。这应该是完美的。

sudo gem install nokogiri -v '1.6.1' 

丹报道了许多类似的答案,但有些变化。感谢。

答案 2 :(得分:0)

我自己处理后写了a post on this。不需要自制软件。

我遇到了一些问题,第一个问题是无法找到开发工具,第二个问题是libxml太旧了。

在rubyconsole中运行以下命令:

$ sudo xcode-select -switch /Library/Developer/CommandLineTools
$ gem uninstall nokogiri libxml-ruby
$ gem install nokogiri

答案 3 :(得分:0)

原来有一个更简单的解决方案:

~/.bashrc~/.bash_profile文件中删除此行:

GREP_OPTIONS="--color=always"

这一个:

export GREP_OPTIONS="--color=auto"

这样您就不需要安装任何重复项了。 感谢MrPowers @ Nokogiri Issues

答案 4 :(得分:-1)

手动./configure'include'和'lib'位置帮助了我。 libxml2源代码布局有点奇怪,所以我最终得到了类似的选项:

gem install nokogiri -- --use-system-libraries --with-xslt-dir=/usr/local/opt/libxslt --with-xml2-include=/usr/local/Cellar/libxml2/2.9.1/include/libxml2 --with-xml2-lib=/usr/local/Cellar/libxml2/2.9.1/lib

当然,版本号取决于实际安装的内容。在写这篇文章的时候,那个版本正在酿造中。

在我的情况下/usr/local/Cellar/libxml2/2.9.1/include/libxml2包含一个名为libxml的目录,而/usr/local/Cellar/libxml2/2.9.1/lib包含libxml2.2.dylib libxml2.a libxml2.dylib pkgconfig xml2Conf.sh:这些是脚本正在寻找的内容,没有其他组合使其可以使用系统库。

使用homebrew nokogiri可以安装既没有过时的也不兼容的(最近的)libxml2和libxslt库,如gist所述。为我工作得很好。