Last active
January 16, 2020 12:01
-
-
Save tamuhey/5166a519cf8af5d1a0304258d61928f6 to your computer and use it in GitHub Desktop.
mecab installation one-liner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pip install gdown --user | |
gdown https://drive.google.com/uc?id=0B4y35FiV1wh7cENtOXlicTFaRUE | |
gdown https://drive.google.com/uc?id=0B4y35FiV1wh7MWVlSDBCSXZMTXM | |
tar xzvf mecab-0.996.tar.gz | |
cd mecab-0.996 | |
./configure | |
make | |
make check | |
sudo make install | |
tar zxfv mecab-ipadic-2.7.0-20070801.tar.gz | |
mecab-ipadic-2.7.0-20070801 | |
./configure --with-charset=utf8 | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
curl https://gist.githubusercontent.com/tamuhey/5166a519cf8af5d1a0304258d61928f6/raw/a782567842cb44dce7856f6ec6fb4d1ddb97b61d/mecab_setup.sh | bash