Docker image of latest Ubuntu for KoNLPy on Python 3.
docker pull theeluwin/ubuntu-konlpy:latest
docker build -t konlpy -f Dockerfile .
or,
./build.sh
docker run --rm -it konlpy
from konlpy.tag import Mecab, Kkma, Okt
mecab = Mecab()
kkma = Kkma()
okt = Okt()
mecab.pos("안녕 친구들")
kkma.pos("안녕 친구들")
okt.pos("안녕 친구들")
# all works fine