jupyter notebook删除红字警告
时间: 2023-10-03 08:05:16 浏览: 162
jupyter notebook安装.docx
要删除jupyter notebook中的红字警告,可以通过以下步骤实现:
1. 首先,在代码中引入warnings库,并使用filterwarnings函数将警告信息忽略掉。可以在代码中加入以下语句:
```python
import warnings
warnings.filterwarnings("ignore")
```
2. 其次,确保已经安装了jupyter notebook。可以通过以下命令在终端中安装jupyter notebook:
```shell
pip install -i https://mirrors.aliyun.com/pypi/simple/ jupyter
```
3. 最后,启动jupyter notebook并运行你的代码。此时,警告信息将被忽略,不再显示红字警告。
阅读全文