【Jupyter Notebook】Error: IProgress not found. Please update jupyter and ipywidgets

【Jupyter Notebook】Error: IProgress not found. Please update jupyter and ipywidgets,第1张

Error: IProgress not found. Please update jupyter and ipywidgets

问题描述:在 base 环境下运行 jupyter notebook,用到名称为 pytorch 虚拟环境的内核,然后报错。

解决方案:根据提示👉官方链接

  1. base 环境下运行:
conda install -c conda-forge ipywidgets
conda install -n base -c conda-forge widgetsnbextension
conda install -n pytorch -c conda-forge ipywidgets
  1. 重启 jupyter notebook。

另:参考👉pip3 install ipykernel

添加内核的方法(pytorch这个虚拟环境为例):

  1. 安装 ipykernel
conda activate pytorch
pip install ipykernel
  1. 添加名称为 pytorch 内核
conda activate pytorch
python -m ipykernel install --name pytorch
  1. 查看 jupyter notebook 中的内核
jupyter kernelspec list
  1. 删除 jupyter notebook 中名称为 pytorch 的内核
jupyter kernelspec remove pytorch

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/800886.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-07
下一篇 2022-05-07

发表评论

登录后才能评论

评论列表(0条)

保存