解决报错ImportError: IProgress not found. Please update jupyter and ipywidgets.

意思是jupyter 中没有ipywidgets。

网上有说卸载jupyter的,也有说按照官网教程执行,(不好用)

conda install -n base -c conda-forge jupyterlab_widgets
conda install -n py36 -c conda-forge ipywidgets

但是都太麻烦了。我运行上面的代码一直显示和我的python环境不匹配,一直在sloving enviroment。

这里有一个简单的办法,直接更新jupyter,新版本的jupyter会直接安装(或许是链接)上ipywidgets。

即在自己需要更新的虚拟环境中执行:

pip install --upgrade jupyter

再重启jupyter就行了

你可能感兴趣的:(jupyter,python,pycharm)