LoginSignup
53
53

More than 5 years have passed since last update.

nokogiri 1.6.3.1がインストール出来ずにbundle install出来ない現象の解決メモ

Last updated at Posted at 2014-10-01

bundle install出来ない

$ bundle install

Gem files will remain installed in /home/websites/test.shukuba.net/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.3.1 for inspection.
Results logged to /home/websites/test.shukuba.net/vendor/bundle/ruby/1.9.1/extensions/x86_64-linux/1.9.1/nokogiri-1.6.3.1/gem_make.out
An error occurred while installing nokogiri (1.6.3.1), and Bundler cannot continue.
Make sure that `gem install nokogiri -v '1.6.3.1'` succeeds before bundling.

必要なパッケージを入れる

$ sudo yum install libxml2-devel libxslt-devel

[snip]
Complete!

nokogiriを追加する。

$ gem install nokogiri -- --use-system-libraries=true --with-xml2-include=/usr/include/libxml2/
Building native extensions with: '--use-system-libraries=true --with-xml2-include=/usr/include/libxml2/'
This could take a while...
Building nokogiri using system libraries.
Successfully installed nokogiri-1.6.3.1
Parsing documentation for nokogiri-1.6.3.1
Done installing documentation for nokogiri after 4 seconds
1 gem installed

bundle installする

$ bundle install

Your bundle is complete!
53
53
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
53
53