Skip to content

Instantly share code, notes, and snippets.

@ikegami-yukino
Last active December 18, 2015 07:37
Show Gist options
  • Save ikegami-yukino/fba9e66a1469d1c8e5df to your computer and use it in GitHub Desktop.
Save ikegami-yukino/fba9e66a1469d1c8e5df to your computer and use it in GitHub Desktop.
Scientific Linux6にUniDicいれる
if [ ! -e `/usr/local/bin/mecab-config --dicdir`/unidic ]; then
if [ "`yum list installed| grep unzip.x86_64`" = "" ]; then
yum install -y unzip
fi
wget "http://jaist.dl.osdn.jp/unidic/58338/unidic-mecab-2.1.2_src.zip" -O /tmp/unidic-mecab-2.1.2_src.zip
unzip /tmp/unidic-mecab-2.1.2_src.zip -d /tmp
cd /tmp/unidic-mecab-2.1.2_src
./configure
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment