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

jupyter notebook 使用虚拟环境 删除内核

程序员文章站 2022-05-29 09:39:38
...

1.进入虚拟环境后安装ipykernel:

conda install ipykernel

2.运行ipykernel安装指令

python -m ipykernel install --user --name mask

注意:如果出现ImportError: cannot import name ‘AsyncGenerator’
将原来的prompt-toolkit-3.0.2版本降为 2.0.10版本:

pip install prompt-toolkit==2.0.10

3.查看 Jupyter notebook kernel

jupyter kernelspec list

4.删除 jupyter 内核

jupyter kernelspec remove kernelname
相关标签: jupyter notebook