Error
- 구글 colab에서 mecab을 설치 후 다음과 같은 명령어를 실행했더니 에러가 발생하였다.
!git clone https://github.com/SOMJANG/Mecab-ko-for-Google-Colab.git
%cd Mecab-ko-for-Google-Colab
!bash install_mecab-ko_on_colab190912.sh
from konlpy.tag import Mecab
m = Mecab()
- 에러
NameError Traceback (most recent call last)
/usr/local/lib/python3.6/dist-packages/konlpy/tag/_mecab.py in __init__(self, dicpath)
107 try:
--> 108 self.tagger = Tagger('-d %s' % dicpath)
109 self.tagset = utils.read_json('%s/data/tagset/mecab.json' % utils.installpath)
NameError: name 'Tagger' is not defined
During handling of the above exception, another exception occurred:
Exception Traceback (most recent call last)
Error 해결
참고 사이트
구글 코랩(Google Colab)에서 Mecab 형태소 분석기, konlpy 쉽게 설치하기