gemでJSONを入れようとしたら
$
sudo gem install json
Building native extensions. This could take a while...
ERROR: Error installing json:
ERROR: Failed to build gem native extension.
/usr/bin/ruby1.8 extconf.rb install json
extconf.rb:1:in `require': no such file to load -- mkmf (LoadError)
from extconf.rb:1
このようにエラーとなった。どうやらruby-devが必要らしかったのでruby-devをインストール
sudo aptitude install ruby-dev
再びgemでJSONを入れる
$ sudo gem install json
Building native extensions. This could take a while...
Successfully installed json-1.2.4
1 gem installed
Installing ri documentation for json-1.2.4...
Installing RDoc documentation for json-1.2.4...
無事にインストール完了。
最終更新:2010年04月13日 11:41