compassインストール時にでたエラー

2014年9月1日

sass使いになろうとsassをインストール。続いてcompassをインストールしようとしたら以下のエラーが・・・。

Kureai-Mac:~ takahashihiroshi1$ sudo gem install compass
Password:
Building native extensions.  This could take a while...
ERROR:  Error installing compass:
	ERROR: Failed to build gem native extension.

    /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby -r ./siteconf20140901-1107-1dhl1p.rb extconf.rb
mkmf.rb can't find header files for ruby at /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/include/ruby.h

extconf failed, exit code 1

Gem files will remain installed in /Library/Ruby/Gems/2.0.0/gems/ffi-1.9.3 for inspection.
Results logged to /Library/Ruby/Gems/2.0.0/extensions/universal-darwin-13/2.0.0/ffi-1.9.3/gem_make.out

macでコマンド打ちはあまりしてこなかったので、何が原因か分からず調べたところ
can’t not header files for…とあり、何やら足りない様子。
同じエラーで対処した方のサイトで解決。
CommandLine Developer Toolsが必用とのこで

sudo xcode-select --install

を実行。

これでcompassインストールに成功!

なお、上記のサイトではxcodeのライセンスに同意しないとダメだったようで、

sudo xcodebuild -license

も実行していた。

PAGE TOP