Last active
November 5, 2019 22:15
-
-
Save serithemage/7c52ab749d053c21898647ce04b4db9b to your computer and use it in GitHub Desktop.
konlpy와 mecab을 amazon linux2에 인스톨하는 스크립트입니다
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/bash | |
sudo amazon-linux-extras install epel | |
sudo yum install -y https://packages.groonga.org/centos/groonga-release-latest.noarch.rpm | |
sudo yum install -y -enablerepo=epel groonga | |
sudo yum install -y gcc-c++ java-1.8.0-openjdk-devel python-devel python3-devel fontconfig fontconfig-devel libstdc++ | |
sudo yum install mecab mecab-devel mecab-ipadic git make curl xz patch | |
sudo pip3 install konlpy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment