conda下使用jupyter notebook 报错解决

问题

ImportError: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html

解决

首先确定当前的环境
conda下使用jupyter notebook 报错解决_第1张图片
像我这里是在nlp环境
1、通过 conda activate 环境名 切换到对应环境
2、安装 jupyter 与 ipywidgets

pip3 install jupyter 
pip3 install ipywidgets

3、重启服务

你可能感兴趣的:(Python,机器学习,深度学习,人工智能)