报错与解决 | IProgress not found. Please update jupyter and ipywidgets.

文章目录

  • 1、问题描述
  • 2、解决办法
    • step1
    • step2
    • step3

1、问题描述

在运行tqdm notebook相关代码时,报错:IProgress not found. Please update jupyter and ipywidgets.

2、解决办法

在官方文档中,指出,如果jupyter notebook与IPython核不在一个环境中时,需要:
报错与解决 | IProgress not found. Please update jupyter and ipywidgets._第1张图片

step1

在命令行输入:conda install -n base -c conda-forge widgetsnbextension

注:base为环境名

step2

在命令行输入:conda install -n py36 -c conda-forge ipywidgets

注:py36为自己建立的虚拟环境名,请更换为自己的环境名。

step3

将目前报错的jupyter notebook文档关掉(‘shut down’)。
报错与解决 | IProgress not found. Please update jupyter and ipywidgets._第2张图片

注:这一步很关键,否则可能会一直报错。而报错并不是因为前面step1、step2没有安装成功,只是因为系统没反应过来而已。
因此,由此提炼出一条debug法则:当按要求安装了相应的包,结果还是报错没有此包,那么,重启程序试试看~

你可能感兴趣的:(机器学习,jupyter,python)