!git clone https://github.com/kakao/khaiii.git
!pip install cmake
!mkdir build
!cd build && cmake /content/khaiii
!cd /content/build/ && make all
!cd /content/build/ && make resource
!cd /content/build && make install
!cd /content/build && make package_python
!pip install /content/build/package_python
from khaiii import KhaiiiApi
api = KhaiiiApi()
for word in api.analyze("안녕, 세상."):
print(word)
'Programming Language > Python' 카테고리의 다른 글
Fairseq 설치 에러 (0) | 2020.11.17 |
---|---|
Python 배열을 특정 사이즈로 자르기 (0) | 2020.08.13 |
Socket을 이용한 Python과 Processing 간의 통신 (1) | 2019.09.10 |
Python 특정 디렉토리 하위 항목 리스트 가져오고 파일 전체 옮기기 (0) | 2019.08.19 |
[펌] 도란쓰-뽀마 (Attention is all you need) (0) | 2019.06.28 |