3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

mecab-rubyをインストールしようとしたが、'mecab.h' not found のようなエラーが出てうまくいかなかった。

Last updated at Posted at 2014-01-14

MeCabをRubyから使おうとしてうまくいかなかったのでメモ。

以下のページを参考に手元のMac OSX(Mavericks)にMeCabをインストールしていた。
http://qiita.com/tstomoki/items/f17c04bd18699a6465be

参考ページを見ながら、

$ brew install mecab
$ brew install mecab-ipadic

とすることでMeCabは使えるようになったが、
参考ページの通りにやってもエラーが出て、mecab-rubyが使えるようにならない。

エラーが

'mecab.h' not found

のようなものだったので(正確には覚えてない)、
MeCabのソースコードを以下のページからダウンロードしてきて、
( http://code.google.com/p/mecab/downloads/detail?name=mecab-0.996.tar.gz )
mecab-0.996/src 内にある mecab.h を、mecab-ruby-0.994 内にコピーすることで解決した。

$ cp mecab-0.996/src/mecab.h mecab-ruby-0.994/
$ cd mecab-ruby-0.994
$ ruby extconf.rb
$ make
$ sudo make install
3
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?