3

Mac に Lingust という Ruby Gem をインストールするのに問題があります。以下のエラー メッセージが表示され、問題の解決方法がわかりません。どんな助けでも大歓迎です。

gem install github-linguist
Building native extensions.  This could take a while...
ERROR:  Error installing github-linguist:
ERROR: Failed to build gem native extension.

/Users/kanery/.rvm/rubies/ruby-2.0.0-p643/bin/ruby -r./siteconf20151008-9054-b4exbs.rb extconf.rb
checking for gmake... no
checking for make... yes
checking for cmake... no
ERROR: CMake is required to build Rugged.
*** 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/kanery/.rvm/rubies/ruby-2.0.0-p643/bin/ruby
  --use-system-libraries

extconf failed, exit code 1

Gem files will remain installed in /Users/kanery/.rvm/gems/ruby-2.0.0-p643/gems/rugged-0.24.0b0 for inspection.
4

1 に答える 1

3

Rugged のインストール手順を読むと、CMake と の両方が必要であることがわかりますpkg-config。エラー メッセージを見ると、システムに CMake がインストールされていないようです。

Homebrewを使用している場合は、実行してインストールできます

brew install cmake

または、次の手順に従ってソースからインストールすることもできます。

于 2015-10-08T12:50:51.153 に答える