美文网首页
Mac安装CRF++

Mac安装CRF++

作者: Yanl__ | 来源:发表于2019-06-17 21:44 被阅读0次

在mac中安装crf++环境

crf + python

  1. 下载crf工具包
    下载地址
    https://taku910.github.io/crfpp/
  2. 安装crf
  • 解压到指定安装目录
  • 依次运行以下命令
% ./configure 
% make
# 进入管理员模式
% su
% make install
  • 在安装目录中,找到Python文件夹,再依次运行下面命令
# 注意:要安装到python3下,需要输入python3 setup.py build,否则默认安装到python2.7中
python3 setup.py build
(sudo) python3 setup.py install
  1. 测试
    在编译器中输入 import CRFPP 不报错,即安装成功

相关文章

网友评论

      本文标题:Mac安装CRF++

      本文链接:https://www.haomeiwen.com/subject/wkqtqctx.html