LoginSignup
1
0

More than 3 years have passed since last update.

MeCab

Posted at

http://taku910.github.io/mecab/
ここから、ダウンロードさせて頂いた MeCab 本体 mecab-0.996.tar.gz と
MeCab 用の辞書 mecab-ipadic-2.7.0-20070801.tar.gz を使用する。

 % tar zxfv mecab-0.996.tar.gz
 % cd mecab-0.996
 % ./configure 
 % make
 % make check
 % su
 % make install
% tar zxfv mecab-ipadic-2.7.0-20070801.tar.gz
% cd mecab-ipadic-2.7.0-20070801
% ./configure
% make
% su
% make install

この時僕の環境では以下のエラーが発生した。

error while loading shared libraries: libmecab.so.2: cannot open shared object file: No such file or directory

ライブラリが認識されていなかったので以下を実行して再度トライ

% sudo ldconfig

これで無事完了

1
0
0

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
1
0