欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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