@创建于:2022.04.22 @修改于:2022.04.22
Anaconda自动安装juypyter notebook。长时间后,jupyter notebook出现问题:无法连接内核;打不开闪退等。本篇利用先卸载再重装策略,解决问题。
1、卸载
进入Anaconda Prompt模式(管理员身份打开),输入如下命令:
conda uninstall notebook
经过长时间运行,结束后,发现Jupyter Notebook启动栏和快捷键消失了,表明卸载成功了。下面的命令不起作用,也表明卸载成功。
jupyter notebook
有博客说这样无法完全卸载,需要使用下面的命令。我没有尝试。 卸载jupyter notebook 重新安装
pip install pip-autoremove
pip-autoremove jupyter -y
2、安装
进入Anaconda Prompt模式(管理员身份打开),输入如下命令:
pip install --upgrade --force-reinstall --no-cache-dir jupyter
pip install --user --upgrade --force-reinstall --no-cache-dir jupyter
pip3 install --upgrade --force-reinstall --no-cache-dir jupyter
pip3 install --user --upgrade --force-reinstall --no-cache-dir jupyter
以上安装方法是失败的,安装过程报错,不清楚为什么!有知道原因的,请您给我留言,告诉我。提前感谢。
conda install -y jupyter
conda install jupyter notebook
安装成功后,Jupyter Notebook启动栏和快捷键也没有出现。有博客说,需要做特殊配置。本文不赘述
3、重启Jupyter
进入Anaconda Prompt模式(管理员身份打开),输入如下命令:
jupyter notebook
能够被启动,表明安装成功了。
|