私の開発者の1人がNokogiriを更新し、更新されたGemfileをプルするときにbundle install
は失敗します。
➜ my-project git:(master) bundle install
Fetching source index from https://rubygems.org/
Using rake 10.4.2
Using i18n 0.7.0
Using json 1.8.3
Using minitest 5.8.3
Using thread_safe 0.3.5
Using tzinfo 1.2.2
Using activesupport 4.2.3
Using builder 3.2.2
Using erubis 2.7.0
Using mini_portile2 2.0.0
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
/Users/me/.rvm/rubies/Ruby-2.1.2/bin/Ruby extconf.rb --use-system-libraries
checking if the C compiler accepts ... yes
checking if the C compiler accepts -Wno-error=unused-command-line-argument-hard-error-in-future... no
Building nokogiri using system libraries.
libxml2 version 2.6.21 or later is required!
*** 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=/Users/me/.rvm/rubies/Ruby-2.1.2/bin/Ruby
--help
--clean
--use-system-libraries
--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-xml2-dir
--without-xml2-dir
--with-xml2-include
--without-xml2-include=${xml2-dir}/include
--with-xml2-lib
--without-xml2-lib=${xml2-dir}/lib
--with-libxml-2.0-config
--without-libxml-2.0-config
--with-pkg-config
--without-pkg-config
--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-exslt-dir
--without-exslt-dir
--with-exslt-include
--without-exslt-include=${exslt-dir}/include
--with-exslt-lib
--without-exslt-lib=${exslt-dir}/lib
--with-libexslt-config
--without-libexslt-config
extconf failed, exit code 1
Gem files will remain installed in /Users/me/.rvm/gems/Ruby-2.1.2@my-project/gems/nokogiri-1.6.7 for inspection.
Results logged to /Users/me/.rvm/gems/Ruby-2.1.2@my-project/extensions/x86_64-darwin-13/2.1.0-static/nokogiri-1.6.7/gem_make.out
An error occurred while installing nokogiri (1.6.7), and Bundler cannot continue.
Make sure that `gem install nokogiri -v '1.6.7'` succeeds before bundling.
「 Nokogiri gemのインストールに失敗しました 」で示唆されているように、実行に失敗しました。
bundle config build.nokogiri --use-system-libraries
bundle install
「 Nokogiri gemのインストールに失敗しました 」で提案したように、私も試しました:
gem install nokogiri -- --use-system-libraries
そして:
gem install nokogiri -v 1.6.5 -- --use-system-libraries
私のOSバージョンはEl Capitan 10.11.2であり、Xcodeライセンス契約が受け入れられていることを確認しました。
ノコギリのインストールを成功させる方法はありますか?
最初にxcode-select
パッケージをインストールしてから、nokogiriを再度インストールしてください。これらのコマンドを試してください、
xcode-select --install
してみて
gem install nokogiri
必要なノコギリのバージョンを使って。
Nokogiriは、libxslt、libxml、zlibなどの複数のライブラリに依存しています。 LinuxディストリビューションにNokogiriをインストールする前に、これらの開発バージョン(ソースを含む)をインストールする必要があります。 OS Xの場合、上記のコマンドが動作するはずです。
実際の解決策は以下のコメントにあります。
これを試して :
gem install nokogiri -- --use-system-libraries --with-xml2-include=/usr/include/libxml2 --with-xml2-lib=/usr/lib/
そして、実行します
bundle update
これがあなたのお役に立てば幸いです:)
私はあなたのmacでlibmlのようなライブラリを維持するためにhomebrewを使用しています、あなたのmacで次のコマンドが役立つかもしれません:
gem install nokogiri -v '1.6.8' -- --use-system-libraries --with-xml2-include=/usr/local/Cellar/libxml2/2.9.2/include/libxml2 --with-xml2-lib=/usr/local/Cellar/libxml2/2.9.2/lib/
brewが次のバージョンで変更されない限り、libxmlのパスが私のものと同じであることを確認してください。これを確認するには、次のコマンドを実行します。
brew info libxml2
Gemfileにgem "nokogiri", ">= 1.6.7.rc3"
を追加します
そして、実行します
bundle install
してみてください:
apt-get install Ruby-nokogiri
bundle install
これを投稿していただきありがとうございます!ついにノコガールをbundle install
以下を実行した後、私のアプリに対して正しく:
bundle config build.nokogiri --use-system-libraries
次の手順は私のために働いた
Ruby -v
Ruby 2.0.0p247 (2013-06-27 revision 41674) [universal.x86_64-darwin13]
Run the following to install RVM and the latest stable version of Ruby:
\curl -L https://get.rvm.io | bash -s stable --Ruby
Install the Ruby interpreter:
rvm install 2.1.0 --autolibs=enable
After that's finished installing, run:
source /Users/{your_user_name}/.rvm/scripts/rvm
Run:
Ruby -v
Ruby 2.1.0p76 (2014-02-24 revision 45161) [x86_64-darwin13.0]
==> Sudo gem install bundler
Fetching: bundler-1.14.6.gem (100%)
Successfully installed bundler-1.14.6
Parsing documentation for bundler-1.14.6
Installing ri documentation for bundler-1.14.6
Done installing documentation for bundler after 4 seconds
1 gem installed
Xcodeとコマンドラインツールを更新すると、すべてのエラーが修正されました。その後、geko install nokogiriでNokogiriをインストールし、その後gem install Railsは正常に動作しました。