当前位置:  开发笔记 > 编程语言 > 正文

禁用jupyter笔记本中的警告

如何解决《禁用jupyter笔记本中的警告》经验,为你挑选了1个好方法。

我在jupyter笔记本中收到这个警告.

/anaconda3/lib/python3.6/site-packages/ipykernel_launcher.py:10: DeprecationWarning: object of type  cannot be safely interpreted as an integer.
  # Remove the CWD from sys.path while we load stuff.
/anaconda3/lib/python3.6/site-packages/ipykernel_launcher.py:11: DeprecationWarning: object of type  cannot be safely interpreted as an integer.
  # This is added back by InteractiveShellApp.init_path()

这很烦人,因为它出现在我做的每一次跑步中:

在此输入图像描述

我该如何修复或禁用它?



1> Ramon Crehue..:

如果您确定您的代码是正确且简单的想要消除此警告以及笔记本中的所有其他警告,请执行以下操作:

import warnings
warnings.filterwarnings('ignore')

推荐阅读
贾志军
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有