Skip to content

Instantly share code, notes, and snippets.

@kazupon
Forked from dtan4/mecab_install.sh
Last active September 23, 2016 01:16
Show Gist options
  • Save kazupon/77f615dca247a5d6aef17febade8365c to your computer and use it in GitHub Desktop.
Save kazupon/77f615dca247a5d6aef17febade8365c to your computer and use it in GitHub Desktop.
#!/bin/bash
base_dir=`pwd`
git clone git@github.com:taku910/mecab.git
cd mecab/mecab
./configure --enable-utf8-only
make
make check
sudo make install
sudo ldconfig
cd $base_dir
wget http://sourceforge.net/projects/mecab/files/mecab-ipadic/2.7.0-20070801/mecab-ipadic-2.7.0-20070801.tar.gz
tar zxvf mecab-ipadic-2.7.0-20070801.tar.gz
cd mecab-ipadic-2.7.0-20070801
./configure --with-charset=utf8
make
sudo make install
sudo ldconfig
cd $base_dir
rm -rf mecab-0.996 mecab-ipadic-2.7.0-20070801
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment