Jupyter notebook切换kernel可以使用conda虚拟环境中的库

Posted Neil-Yale

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jupyter notebook切换kernel可以使用conda虚拟环境中的库相关的知识,希望对你有一定的参考价值。

Jupyter notebook切换kernel可以使用conda虚拟环境中的库

首先
Conda create -n xxx python=3.6创建名为xxx的虚拟环境
激活该虚拟环境
Conda activate xxx
在该虚拟环境下安装ipykernel,它可以添加内核
Pip install ipykernel
然后将虚拟环境加入内核中
Python -m ipykernel install --name=xxx --user

要进入jupyter notebook的时候从base中进去就可以了,进去后切换kernel即可

以上是关于Jupyter notebook切换kernel可以使用conda虚拟环境中的库的主要内容,如果未能解决你的问题,请参考以下文章

Anaconda jupyter-notebook 添加kernel

关于如何往Jupyter notebook添加可选的kernel

最全指南如何在 Jupyter Notebook 中切换/使用 conda 虚拟环境?

Jupyter Notebook安装新python kernel

使用jupyter notebook 时明明已经安装了某个lib,还是出现ModuleNotFoundError

使用jupyter notebook 时明明已经安装了某个lib,还是出现ModuleNotFoundError