0
0

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 3 years have passed since last update.

MecabをLinux(CentOS)にbrewでインストール

Posted at

前提:レンタルサーバー ロリポップマネージクラウドで行いました。他のでもできると思います。

1.まずインストールするためにHomebrewをインストールします。

公式サイトにある、インストールコードをターミナルに入力します。

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

2.Homebrewのパスを通す

このままじゃコマンド「brew」は使えません。
使えるように、設定してあげないといけません。

これをターミナルに一気に入力したら、「brew」で、Homebrewを使えるようになります。

test -d ~/.linuxbrew && eval $(~/.linuxbrew/bin/brew shellenv)
test -d /home/linuxbrew/.linuxbrew && eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
test -r ~/.bash_profile && echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.bash_profile
echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.profile

情報源: https://fukatsu.tech/linuxbrew

3.brewが使えるか確認

これだけ入力して「brew: command not found」にならなければ大丈夫です。いろんな解説とかがバーっと出てきたらokです。

brew

4.Mecabをインストール

まずmecabをbrewでインストール。ただこれだけだと使えません。辞書データが必要です。

brew install mecab

辞書をインストール。完了!

brew install mecab-ipadic

5.mecabが使えるか確認

mecabとターミナルに入力して、何も出てない状態で何か文章を打ち込んでみてください。

mecab
お腹減った。

お腹	名詞,一般,*,*,*,*,お腹,オナカ,オナカ
減っ	動詞,自立,*,*,五段・ラ行,連用タ接続,減る,ヘッ,ヘッ
た	助動詞,*,*,*,特殊・タ,基本形,た,タ,タ
。	記号,句点,*,*,*,*,。,。,。
EOS

お腹減ったと入れると、解析された結果が出てきます。以上です〜。お疲れ様でした。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?