반응형
Konlpy라이브러리를 처음 실행하다 보면 위와 같은 에러를 만날 수 있습니다.
예를들어 Okt를 통해 형태소분석 또는 명사추출을 진행할 때 아래와 같이 Okt.morph 또는 Okt.pos처럼 사용할 때 발생합니다.
from konlpy.tag import Okt
Okt.pos('오늘 배가 아파서 화장실을 갔어')
#TypeError Traceback (most recent call last)
#<ipython-input-138-573929ee924f> in <module>
# 1 from konlpy.tag import Okt
#----> 2 Okt.pos('오늘 배가 아파서 화장실을 갔어')
#TypeError: pos() missing 1 required positional argument: 'phrase'
해결 방법은 다음과 같습니다. Okt를 사용할때 가로를 넣어주면 됩니다.
대부분 아래 두번째 방법을 많이 사용합니다.
반응형
'언어 > Python' 카테고리의 다른 글
[Python] SMTPAuthenticationError (0) | 2022.07.05 |
---|---|
[Python] Colab plot 한글깨짐현상 해결방법. (0) | 2021.11.08 |
[Python] 'tqdm_notebook' object has no attribute 'delay' (0) | 2021.10.25 |
[python] 공공데이터 포털 API사용 (0) | 2021.08.10 |
[Python] url 파일다운로드 에러 - UnicodeEncodeError: 'ascii' codec can't encode character (0) | 2021.07.21 |