码迷,mamicode.com
首页 > 编程语言 > 详细

去掉python的警告

时间:2018-12-27 22:56:48      阅读:375      评论:0      收藏:0      [点我收藏+]

标签:windows   安装   microsoft   port   ali   strong   category   mil   去掉   

1.常规警告
import warnings
warnings.filterwarnings("ignore")

 

2.安装gensim,在python中导入的时候出现一个警告:

warnings.warn("detected Windows; aliasing chunkize to chunkize_serial")
UserWarning: detected Windows; aliasing chunkize to chunkize_serial

解决方法:输入下面两条语句即可:

import warnings
warnings.filterwarnings(action=‘ignore‘,category=UserWarning,module=‘gensim‘)

  

去掉python的警告

标签:windows   安装   microsoft   port   ali   strong   category   mil   去掉   

原文地址:https://www.cnblogs.com/nxf-rabbit75/p/10187414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!