安裝方式1:pip install pyltp
若報錯: error: command 'gcc' failed with exit status 1
解決辦法:
yum install gcc-c++ python-devel.x86_64 cyrus-sasl-devel.x86_64
yum -y install gcc
yum -y install python-devel
yum -y install krb5-devel
yum -y install krb5-workstation
然後再進行安裝,成功。
安裝方式2:
(3)python setup.py install
注意:若同樣出現「gcc」的問題,參見安裝方式1裡的解決辦法,然後再install;
若安裝過程**現 「cc1plus: 警告:command line option 『-wstrict-prototypes』 is valid」 等warning,不用擔心,等待安裝完成。
from pyltp import segmentor
model_path = 'ltp_data/cws.model'
# 分詞
txt = '初中物理'
segmentor = segmentor() # 初始化例項
segmentor.load(model_path) # 載入模型
words = segmentor.segment(txt) # 分詞
print(','.join(words))
#segmentor.release() # 釋放模型
可參見
ubuntu 安裝哈工大語言雲 pyltp
導師給派了乙個自然語言處理相關的研究,所以想一步步記錄下來,讓自己學的更透徹。現在先是在ubuntu下安裝pyltp 1.安裝git 執行中輸入 sudo apt get install git 安裝cmake 執行中輸入 sudo apt get install cmake 2.執行中輸入 git...
哈工大 2009 孟婆湯
description 男從戎,女守家。一夜,狼煙四起,男戰死沙場。從此一道黃泉,兩地離別。最後,女終於在等待中老去逝去。逝去的最後是換盡一生等到的相逢和團圓。某日兩人至奈何橋前,服下孟婆湯。每滴孟婆湯都有強度不一的藥效,設一碗孟婆湯共n滴 0 n 100000 其中第i滴 0 i n 用b i 表...
哈工大LTP使用
coding utf 8 from pyltp import sentencesplitter from pyltp import segmentor from pyltp import postagger from pyltp import namedentityrecognizer from p...