Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- PYTHON
- programmers
- 캐치카페
- github
- Real or Not? NLP with Disaster Tweets
- 자연어처리
- ChatGPT
- ubuntu
- AI 경진대회
- 프로그래머스
- 프로그래머스 파이썬
- 코로나19
- Docker
- 편스토랑 우승상품
- gs25
- Git
- 편스토랑
- 백준
- hackerrank
- 맥북
- Kaggle
- 더현대서울 맛집
- 우분투
- Baekjoon
- SW Expert Academy
- 금융문자분석경진대회
- leetcode
- 파이썬
- dacon
- 데이콘
Archives
- Today
- Total
솜씨좋은장씨
[Docker] ubuntu16.04 기반에서 mecab-ko 활용하는 방법 본문
728x90
반응형
docker에서 mecab을 활용하려고 이것 저것 여러 페이지를 참고하며 시도해보았던 내용 중
성공했던 내용에 대해서 적어보려 합니다.
Dockerfile
FROM ubuntu:16.04
# Python
RUN apt-get update && \
apt-get install -y --no-install-recommends apt-utils && \
apt-get -y install software-properties-common && \
add-apt-repository -y ppa:deadsnakes/ppa && \
apt-get update --fix-missing && \
apt-get -y install --fix-missing python3.6 && \
apt-get -y install --fix-missing python3.6-dev && \
apt-get -y install --fix-missing python3-pip && \
python3.6 -m pip install pip --upgrade
ENV HOME .
# mecab start
RUN apt-get update && \
apt-get install -y --no-install-recommends tzdata g++ git curl
RUN apt-get install python3-setuptools
RUN apt-get install -y default-jdk default-jre
# mecab end
ADD requirements.txt ${HOME}
RUN pip3.6 install -r requirements.txt
# mecab start
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 2
RUN update-alternatives --config python3
RUN cd ${HOME} && \
curl -s https://raw.githubusercontent.com/konlpy/konlpy/master/scripts/mecab.sh | bash -s
# mecab end
RUN export LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
ENV LANGUAGE=C.UTF-8
COPY . ${HOME}
CMD ["python3"]
requirements.txt
JPype1==1.1.2
konlpy==0.5.2
ubuntu 16.04에서 python3.6 을 설치하고 konlpy 에 필요한 라이브러리 들을 설치합니다.
그 후에 mecab 을 설치합니다.
약 8시간 넘게 삽질을 하였는데 도와주신 분들께 정말 감사드립니다.
읽어주셔서 감사합니다!
'Programming > Docker' 카테고리의 다른 글
Comments