OSX YOSEMITE 10.10.5
ruby 2.1.3
railsのアプリを--skip-bundle -d mysqlをしてアプリを作成した後、
bundleをしようとしても、nokogiriでエラーが起きます。
MacBook-Pro-3:app_name user_name$ bundle Fetching gem metadata from https://rubygems.org/........... Fetching version metadata from https://rubygems.org/... Fetching dependency metadata from https://rubygems.org/.. Resolving dependencies..... Using rake 11.2.2 Using i18n 0.7.0 Using json 1.8.3 Using minitest 5.9.0 Using thread_safe 0.3.5 Using tzinfo 1.2.2 Using activesupport 4.2.5 Using builder 3.2.2 Using erubis 2.7.0 Using mini_portile2 2.1.0 Using pkg-config 1.1.7 Installing nokogiri 1.6.8 with native extensions Errno::EACCES: Permission denied - /Library/Ruby/Gems/2.0.0/extensions/universal-darwin-14/2.0.0/nokogiri-1.6.8/gem_make.out An error occurred while installing nokogiri (1.6.8), and Bundler cannot continue. Make sure that `gem install nokogiri -v '1.6.8'` succeeds before bundling.
このようなエラーがでるので、
gem install nokogiri -v '1.6.8'
をすると、以下のエラーが出ます。
MacBook-Pro-3:app_name user_name$ gem install nokogiri -v '1.6.8' Building native extensions. This could take a while... ERROR: Error installing nokogiri: ERROR: Failed to build gem native extension. current directory: /Users/user_name/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/nokogiri-1.6.8/ext/nokogiri /Users/user_name/.rbenv/versions/2.1.3/bin/ruby -r ./siteconf20160629-10816-pe1drn.rb extconf.rb Using pkg-config version 1.1.7 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 packaged libraries. Using mini_portile version 2.1.0 checking for iconv.h... yes checking for gzdopen() in -lz... yes checking for iconv... yes ************************************************************************ IMPORTANT NOTICE: Building Nokogiri with a packaged version of libxml2-2.9.4. Team Nokogiri will keep on doing their best to provide security updates in a timely manner, but if this is a concern for you and want to use the system library instead; abort this installation process and reinstall nokogiri as follows: gem install nokogiri -- --use-system-libraries [--with-xml2-config=/path/to/xml2-config] [--with-xslt-config=/path/to/xslt-config] If you are using Bundler, tell it to use the option: bundle config build.nokogiri --use-system-libraries bundle install Note, however, that nokogiri is not fully compatible with arbitrary versions of libxml2 provided by OS/package vendors. ************************************************************************ Extracting libxml2-2.9.4.tar.gz into tmp/x86_64-apple-darwin14.5.0/ports/libxml2/2.9.4... OK Running 'configure' for libxml2 2.9.4... OK Running 'compile' for libxml2 2.9.4... ERROR, review '/Users/user_name/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/nokogiri-1.6.8/ext/nokogiri/tmp/x86_64-apple-darwin14.5.0/ports/libxml2/2.9.4/compile.log' to see what happened. Last lines are: ======================================================================== unsigned short* in = (unsigned short*) inb; ^~~~~~~~~~~~~~~~~~~~~ encoding.c:815:27: warning: cast from 'unsigned char *' to 'unsigned short *' increases required alignment from 1 to 2 [-Wcast-align] unsigned short* out = (unsigned short*) outb; ^~~~~~~~~~~~~~~~~~~~~~ 4 warnings generated. CC error.lo CC parserInternals.lo CC parser.lo CC tree.lo CC hash.lo CC list.lo CC xmlIO.lo xmlIO.c:1450:52: error: use of undeclared identifier 'LZMA_OK' ret = (__libxml2_xzclose((xzFile) context) == LZMA_OK ) ? 0 : -1; ^ 1 error generated. make[2]: *** [xmlIO.lo] Error 1 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2 ======================================================================== *** 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/user_name/.rbenv/versions/2.1.3/bin/ruby --help --clean --use-system-libraries --enable-static --disable-static --with-zlib-dir --without-zlib-dir --with-zlib-include --without-zlib-include=${zlib-dir}/include --with-zlib-lib --without-zlib-lib=${zlib-dir}/lib --enable-cross-build --disable-cross-build /Users/user_name/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/mini_portile2-2.1.0/lib/mini_portile2/mini_portile.rb:366:in `block in execute': Failed to complete compile task (RuntimeError) from /Users/user_name/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/mini_portile2-2.1.0/lib/mini_portile2/mini_portile.rb:337:in `chdir' from /Users/user_name/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/mini_portile2-2.1.0/lib/mini_portile2/mini_portile.rb:337:in `execute' from /Users/user_name/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/mini_portile2-2.1.0/lib/mini_portile2/mini_portile.rb:111:in `compile' from /Users/user_name/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/mini_portile2-2.1.0/lib/mini_portile2/mini_portile.rb:150:in `cook' from extconf.rb:364:in `block (2 levels) in process_recipe' from extconf.rb:257:in `block in chdir_for_build' from extconf.rb:256:in `chdir' from extconf.rb:256:in `chdir_for_build' from extconf.rb:363:in `block in process_recipe' from extconf.rb:262:in `tap' from extconf.rb:262:in `process_recipe' from extconf.rb:555:in `<main>' To see why this extension failed to compile, please check the mkmf.log which can be found here: /Users/user_name/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/extensions/x86_64-darwin-14/2.1.0-static/nokogiri-1.6.8/mkmf.log extconf failed, exit code 1 Gem files will remain installed in /Users/user_nae/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/nokogiri-1.6.8 for inspection. Results logged to /Users/user_name/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/extensions/x86_64-darwin-14/2.1.0-static/nokogiri-1.6.8/gem_make.out
そして、
MacBook-Pro-3:app_name user_name$ NOKOGIRI_USE_SYSTEM_LIBRARIES=1 \ > gem install nokogiri -- \ > --with-xml2-config=/usr/local/opt/libxml2/bin/xml2-config \ > --with-xslt-config=/usr/local/opt/libxslt/bin/xslt-config Building native extensions with: '--with-xml2-config=/usr/local/opt/libxml2/bin/xml2-config --with-xslt-config=/usr/local/opt/libxslt/bin/xslt-config' This could take a while... Successfully installed nokogiri-1.6.8 Parsing documentation for nokogiri-1.6.8 Done installing documentation for nokogiri after 1 seconds 1 gem installed
とすると、nokogiriをインストールできるんですが、
またbundleしても同じエラーが出ます。
どなたかわかりますか?
ググったら、たくさん文書が出てきたのですが、これだという文書が見つからず、
MacBook-Pro-3:app_name user_name$ NOKOGIRI_USE_SYSTEM_LIBRARIES=1 \ > gem install nokogiri -- \ > --with-xml2-config=/usr/local/opt/libxml2/bin/xml2-config \ > --with-xslt-config=/usr/local/opt/libxslt/bin/xslt-config
これをやって、インストールできたので文書が終わっているとかばかりで、肝心なbundleしようとしても
エラーがでるところの解決まではありませんでした。
どなたかわかる方いませんでしょうか?
もう1日半くらいはまっています。
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2016/06/29 10:13 編集
退会済みユーザー
2016/06/29 10:15 編集
2016/06/29 10:21
退会済みユーザー
2016/06/29 10:28 編集
2016/06/29 11:16
退会済みユーザー
2016/06/29 11:19
2016/06/29 11:31
退会済みユーザー
2016/06/29 11:35 編集
2016/06/29 11:44
退会済みユーザー
2016/06/29 11:47
2016/06/29 12:05
退会済みユーザー
2016/06/29 12:07
2016/06/29 12:36
2016/06/29 12:37
2016/06/29 12:37
退会済みユーザー
2016/06/29 12:43
2016/06/29 12:53
退会済みユーザー
2016/06/29 13:34