简体   繁体   English

在 jupyter notebook 中导入库时出现运行时警告

[英]Runtime warning when importing libraries in jupyter notebook

So, I have never had this issue before on prior laptops- but recently on my new laptop- I get runtime warnings when trying to import libraries into Jupyter notebook- I'm not sure of the cause or how to fix it.因此,我以前从未在以前的笔记本电脑上遇到过这个问题——但最近在我的新笔记本电脑上——我在尝试将库导入 Jupyter 笔记本时收到运行时警告——我不确定原因或如何解决它。 Any solutions?有什么解决办法吗?

enter image description here在此处输入图像描述

Maybe there is some problem with the package which showing warning.显示警告的 package 可能存在一些问题。 Try to re-install the package.尝试重新安装 package。

First check whether the package working properly.首先检查package是否工作正常。 If not install the pakage.如果不安装包。 Here in your screenshot it shows problem with numpy.在您的屏幕截图中,它显示了 numpy 的问题。 To install numpy follow要安装 numpy 遵循

pip install numpy

Or或者

python -m pip install numpy

If the packages are working but still warning persist, then put the below code to remove the warning.如果软件包正在工作但仍然存在警告,请输入以下代码以删除警告。

import warnings
warnings.filterwarnings('ignore')
warnings.simplefilter('ignore')

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM