jupyter notebook issues

问题

使用CellOracle的时候,报错“InProgress is not defined”


解决方法1

网上给出的解决方式是在base环境(安装jupyter)中安装widgetsnbextension,在使用环境安装ipywidgets,具体可以见网址 https://ipywidgets.readthedocs.io/en/stable/user_install.html ,但是这个方法对我不适应。


解决方法2

实测有效

使用jupyter notebook 来跑程序,但是出现kernel keep die的情况,那么需要卸载ipykernel和ipython,然后重新,并且安装nb_conda(为了是jupter识别该conda环境),参考网址:https://github.com/tqdm/tqdm/issues/872

1
2
3
4
5
conda remove ipykernel
conda remove ipython
conda install ipykernel
conda install ipython
conda install nb_conda