jupyter kernel创建 删除

转自https://blog.csdn.net/weixin_44135282/article/details/90704266

个人学习收藏,侵删

-----------------------------------------------------------------------

conda create -n py36 python=36 # 创建一个python36的环境,名为py36
source activate py36 # 激活py36环境
conda install ipykernel # 安装ipykernel模块
#进行配置 名字为py36显示为py3636
python -m ipykernel install --user --name py36 --display-name “py3636”
jupyter notebook # 启动jupyter notebook

查看安装的内核和位置
jupyter kernelspec list

删除py36
jupyter kernelspec remove py36

猜你喜欢

转载自blog.csdn.net/yocencyy/article/details/109486155