打开Jupyter notebook没有虚拟环境内核

放了个假,今天准备打开anaconda中的jupyter notebook重温一下之前的文档,结果双击Anaconda-Navigator出现了【应用程序“Anaconda-Navigator”无法打开】,想着利用终端也可以操作,于是使用下面命令激活了环境并打开jupter notebook:

conda info --envs

conda activate myenv

jupyter notebook

打开后,内核kernel只有python3(ipykernel)

查找了许多方法,最终解决办法是,输入以下两个命令:

conda install jupyter

conda install nb_conda

「其实就是为这个环境安装一个内核」

再次打开后成功了。

打开Jupyter notebook没有虚拟环境内核_第1张图片

不过,为啥一个假期过后,发生了“应用程序“Anaconda-Navigator”无法打开”的问题。。。。

你可能感兴趣的:(jupyter)