在 El Capitan 上安装 Nokogiri (1.6.7) 时出错
Error while installing Nokogiri (1.6.7) on El Capitan
我的一位开发人员更新了 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.
按照“Failing to install Nokogiri gem”中的建议,我尝试 运行:
未成功
bundle config build.nokogiri --use-system-libraries
bundle install
按照“Failing to 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 许可协议已被接受。
关于如何成功安装 Nokogiri 有什么想法吗?
编辑更新与 MacOS Sierra 兼容:
xcode-select --install
在您的 Gemfile 中添加 gem "nokogiri", ">= 1.6.7.rc3"
然后是运行
bundle install
您应该先安装 xcode-select
软件包,然后再次尝试安装 nokogiri。试试这些命令,
xcode-select --install
然后尝试
gem install nokogiri
使用您想要的任何 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
希望对您有所帮助:)
更新 Xcode 和命令行工具为我修复了所有错误。之后我可以使用 gem install nokogiri 安装 Nokogiri 然后 gem install rails 工作正常。
尝试:
apt-get install ruby-nokogiri
bundle install
我在你的 mac 上使用自制程序维护 libml 等库,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/
只需确保 libxml 的路径与我的路径相同,除非 brew 随下一个版本发生变化。您可以通过 运行 以下命令进行检查:
brew info libxml2
以下步骤对我有用
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
感谢您发帖!在 运行 执行以下操作后,我终于让 nokogirl 运行 和 bundle install
正确地用于我的应用程序:
bundle config build.nokogiri --use-system-libraries
我的一位开发人员更新了 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.
按照“Failing to install Nokogiri gem”中的建议,我尝试 运行:
未成功bundle config build.nokogiri --use-system-libraries
bundle install
按照“Failing to 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 许可协议已被接受。
关于如何成功安装 Nokogiri 有什么想法吗?
编辑更新与 MacOS Sierra 兼容:
xcode-select --install
在您的 Gemfile 中添加 gem "nokogiri", ">= 1.6.7.rc3"
然后是运行
bundle install
您应该先安装 xcode-select
软件包,然后再次尝试安装 nokogiri。试试这些命令,
xcode-select --install
然后尝试
gem install nokogiri
使用您想要的任何 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
希望对您有所帮助:)
更新 Xcode 和命令行工具为我修复了所有错误。之后我可以使用 gem install nokogiri 安装 Nokogiri 然后 gem install rails 工作正常。
尝试:
apt-get install ruby-nokogiri
bundle install
我在你的 mac 上使用自制程序维护 libml 等库,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/
只需确保 libxml 的路径与我的路径相同,除非 brew 随下一个版本发生变化。您可以通过 运行 以下命令进行检查:
brew info libxml2
以下步骤对我有用
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
感谢您发帖!在 运行 执行以下操作后,我终于让 nokogirl 运行 和 bundle install
正确地用于我的应用程序:
bundle config build.nokogiri --use-system-libraries