Skip to content

Instantly share code, notes, and snippets.

@marantz
Created February 21, 2020 21:25
Show Gist options
  • Save marantz/35af5dac6d430d866b150cd763bddc74 to your computer and use it in GitHub Desktop.
Save marantz/35af5dac6d430d866b150cd763bddc74 to your computer and use it in GitHub Desktop.
CFLAGS=-stdlib=libc++ pip install jpype1-py3
tar -xzvf mecab-0.996-ko-0.9.2.tar.gz
cd mecab-0.996-ko-0.9.2
./configure
make;sudo make install
MACOSX_DEPLOYMENT_TARGET=10.15 pip install mecab
python
import MeCab
m = MeCab.Tagger()
te = m.parse('mecab 이 좋긴한데... 설치가 -_-')
print(te)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment