Created
March 27, 2014 13:15
-
-
Save Nyoho/9807334 to your computer and use it in GitHub Desktop.
mecab-ruby を gem にしてインストールするまでの道のり
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
#!/bin/sh | |
wget https://mecab.googlecode.com/files/mecab-ruby-0.996.tar.gz | |
tar xvf mecab-ruby-0.996.tar.gz | |
cd mecab-ruby-0.996 | |
gem build mecab-ruby.gemspec | |
gem install mecab-ruby |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Type the following in your command line:
curl https://gist.githubusercontent.com/Nyoho/9807334/raw/d613323c4510490bf485c0a83e89f3082d1c3bb8/gem-install-mecab-ruby.sh | sh