Jeden z moich programistów zaktualizował Nokogiri, a podczas wyciągania zaktualizowanego Gemfile moja bundle install
zawiedzie.Błąd podczas instalowania Nokogiri (1.6.7) na El Capitan
➜ 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/[email protected]/gems/nokogiri-1.6.7 for inspection.
Results logged to /Users/me/.rvm/gems/[email protected]/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.
Jak sugeruje w "Failing to install Nokogiri gem" Ja bezskutecznie próbowała uruchomić:
bundle config build.nokogiri --use-system-libraries
bundle install
Jak sugeruje w "Failing to install Nokogiri gem" Próbowałem również:
gem install nokogiri -- --use-system-libraries
oraz:
gem install nokogiri -v 1.6.5 -- --use-system-libraries
Moja wersja systemu operacyjnego to El Capitan 10.11.2, a ja sprawdziłem, czy umowa licencyjna Xcode została zaakceptowana.
Jakieś pomysły dotyczące instalacji Nokogiri, aby odnieść sukces?
Każdy sukces z 'wywaru zainstalować libxml2'? – RAJ
Nie, przepraszam, że to nie miało znaczenia. Ale komunikat instalacyjny wskazuje, że jest już zainstalowany: 'Ta formuła jest tylko keg, co oznacza, że nie była dowiązana do/usr/local. OS X zapewnia już to oprogramowanie, a instalacja kolejnej wersji równolegle może powodować wszelkiego rodzaju problemy. Zasadniczo nie ma dla ciebie żadnych konsekwencji. Jeśli tworzysz własne oprogramowanie i wymaga tego wzoru, będziesz musiał dodać do swoich zmiennych konstrukcyjnych : LDFLAGS: -L/usr/local/opt/libxml2/lib, CPPFLAGS: -I/usr/local/opt/libxml2/include' – ChristofferJoergensen