为什么 `gem install` 可以工作但 `bundle install` 却不能?

4
在我的项目中,当我运行bundle install时,出现了以下错误:
An error occurred while installing nokogiri (1.6.1), and Bundler cannot continue.
Make sure that `gem install nokogiri -v '1.6.1'` succeeds before bundling.

所以我尝试了一下

 gem install nokogiri -v '1.6.1'

这确实起作用了。当然,这应该让我感到高兴,但现在我在想,到底是什么起了作用,让我能够安装 gem,现在 bundle install 也成功了。

我正在运行 Mac OSX 10.9.2。

这是我第一次运行 bundle install 时的日志:

Gem::Ext::BuildError: ERROR: Failed to build gem native extension.

    /Users/me/.rvm/rubies/ruby-1.9.3-p545/bin/ruby extconf.rb --with-xml2-dir=/usr --with-xslt-dir=/opt/local --with-iconv-dir=/opt/local
Extracting libxml2-2.8.0.tar.gz into tmp/x86_64-apple-darwin13.1.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/me/.rvm/gems/ruby-1.9.3-p545/gems/nokogiri-1.6.1/ports/x86_64-apple-darwin13.1.0/libxml2/2.8.0)...
Extracting libxslt-1.1.26.tar.gz into tmp/x86_64-apple-darwin13.1.0/ports/libxslt/1.1.26... OK
Running 'configure' for libxslt 1.1.26... OK
Running 'compile' for libxslt 1.1.26... OK
Running 'install' for libxslt 1.1.26... OK
Activating libxslt 1.1.26 (from /Users/me/.rvm/gems/ruby-1.9.3-p545/gems/nokogiri-1.6.1/ports/x86_64-apple-darwin13.1.0/libxslt/1.1.26)...
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
    --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/me/.rvm/rubies/ruby-1.9.3-p545/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
    --with-iconv-include
    --without-iconv-include=${iconv-dir}/include
    --with-iconv-lib
    --without-iconv-lib=${iconv-dir}/lib
    --with-xml2-dir
    --with-xml2-include
    --without-xml2-include=${xml2-dir}/include
    --with-xml2-lib
    --without-xml2-lib=${xml2-dir}/lib
    --with-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

extconf failed, exit code 1

Gem files will remain installed in /Users/me/.rvm/gems/ruby-1.9.3-p545/gems/nokogiri-1.6.1 for inspection.
Results logged to /Users/me/.rvm/gems/ruby-1.9.3-p545/extensions/x86_64-darwin-13/1.9.1/nokogiri-1.6.1/gem_make.out

缺少依赖项导致错误。您是否尝试过查看安装它们?http://nokogiri.org/tutorials/installing_nokogiri.html - Sgnl
1个回答

3

试试这个:

brew install libxml2 libxslt libiconv

你无法仅通过“bundle install”安装它的原因是因为Bundler仅处理gem依赖项而不处理本地依赖项。该gem需要你的系统拥有libxml2,而你没有安装它。因此,你需要安装它们。提示我的答案是你的日志中出现的这个错误信息:
 ERROR: Failed to build gem native extension.

1
谢谢提示。我的问题更多是为什么我可以通过gem install安装宝石,但不能通过bundle install安装。 - Besi
但是 gem install nokogiri -v '1.6.1' 是否安装所需的依赖项? - Besi
不是很确定,原因可能是--include-dependenciesgem install的默认选项。 - Aravind
你的假设可能是正确的。由于它现在已经成功安装,很难弄清楚实际问题是什么。 - Besi

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接