jupyter notebook添加kernel
程序员文章站
2022-05-29 09:05:08
...
假设你在pythonA环境下安装了jupyter notebook,想添加pythonB环境到jupyter notebook其上的kernels列表里以供使用。
1.pythonB环境安装ipykernel:
# xxx/python 是你的pythonB环境下的python路径
xxx/python -m pip install ipykernel
2.添加pythonB到kernel:
# xxx/python 是你的pythonB环境下的python路径
xxx/python -m ipykernel install --user --name my_pythonB_kernel
# --user 指的是在当前用户文件夹下创建配置
# --name 后面跟着的字符串指定kernel的名字
# 这里 --name my_pythonB_kernel 将kernel名字设置为 "my_pythonB_kernel"
#如果删除--user,则在全局环境下添加kernel配置文件,这样其他用户也能使用你配置的kernel
#但是这需要管理员权限
完成!现在打开jupyter notebook,你应该能看到刚刚添加的my_pythonB_kernel环境。
如果你的pythonB环境是anaconda设置的环境,以上方法依然适用。
不过也有简便一点的操作,不同点只是不需要去手动确认pythonB环境的python路径了,最后产生的配置是一样的。
1.切换到pythonB环境:
conda activate pythonB(你的conda环境名字)
2.安装ipykernel:
conda install ipykernel
3.添加到kernel:
python -m ipykernel install --user --name my_pythonB_kernel
推荐阅读
-
anaconda 环境新建/删除/拷贝 jupyter notebook上使用python虚拟环境 TensorFlow
-
非线性函数的最小二乘拟合——兼论Jupyter notebook中使用公式 [原创]
-
基于jupyter notebook的python编程(Win10通过OpenCv-3.4.1进行人脸口罩数据集的模型训练并进行戴口罩识别检测)
-
Jupyter notebook 创建、切换Anaconda(Python)虚拟环境
-
如何修改通过Anaconda安装的jupyter notebook的工作目录
-
修改Jupyter Notebook的默认打开路径
-
jupyter notebook内核配置的图文教程
-
VS Code 之 Jupyter NoteBook 初试
-
Jupyter Notebook使用笔记
-
jupyter notebook