使用jieba分词出现“Building prefix dict from the default dictionary……”等提示如何去除

  • Post author:
  • Post category:其他


使用jieba分词出现“Building prefix dict from the default dictionary……”等提示如何去除?

具体错误提示如下:

在这里插入图片描述


解决办法:


找到jieba库的__init__.py,打开,将第29行

default_logger.setLevel(logging.DEBUG)

改为

default_logger.setLevel(logging.INFO)

重新运行代码,不再报错。


参考:


1.

https://github.com/fxsjy/jieba/issues/529

纸上得来终觉浅 绝知此事要躬行!     —— 陆游



版权声明:本文为JB_JIANGBIN原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。