Until you install MeCab on your Mac and use it in Python.
$ brew install mecab
$ brew install mecab-mecab-ipadic
If brew hasn't updated, it seems to stumble at this point. Now I have MeCab on my basic Mac, but I stumbled on wget. It seems that wget should also be put in with brew.
$ brew install wget
$ wget https://mecab.googlecode.com/files/mecab-python-0.996.tar.gz
$ pip install mecab-python-0.996.tar.gz
That's it. Now you can use MeCab in Python.
Recommended Posts