jupyter notebook内核配置的图文教程
作者:西土城山羊卷 时间:2023-11-22 03:56:56
我的 jupyter-bootbook 是在 ubuntu 下安装 anaconda 获得的,下面的命令在 Windows 下大部分可以运行,但略有差异。还是建议在 Linux 环境下做 AI 开发。
添加内核
创建一个新的虚拟环境,安装 python ipykernel
(base) fxyang@dl733:~$ conda create -n study python ipykernel
激活该环境
(base) fxyang@dl733:~$ conda activate study
(study) fxyang@dl733:~$
在激活的环境下,执行下面的命令添加内核
(study) fxyang@dl733:~$ python -m ipykernel install --user --name study
Installed kernelspec study in /home/fxyang/.local/share/jupyter/kernels/study
其中 study 是该环境对应内核在 notebook 中显示的名称,一般建议与虚拟环境名相同。
查看已有内核列表
(study) fxyang@dl733:~$ jupyter-kernelspec list
Available kernels:
study /home/fxyang/.local/share/jupyter/kernels/study
python3 /home/fxyang/Software/anaconda3/envs/study/share/jupyter/kernels/python3
重命名内核
将 study 环境的 kernel 重命名为 study2
(study) fxyang@dl733:~$ cd /home/fxyang/.local/share/jupyter/kernels/study
(study) fxyang@dl733:~/.local/share/jupyter/kernels/study$ vim kernel.json
# 更改字段如下:
"display_name": "study2"
自此,notebook 核心如下图所示:
注意:jupyter-notebook 的根目录取决于,执行 jupyter-notebook 命令的根目录。而且该命令只能在 base 环境下运行,因为 jupyter-notebook 工具安装在 base 环境下。
删除内核
(study) fxyang@dl733:~$ jupyter-kernelspec uninstall study
Kernel specs to remove:
study /home/fxyang/.local/share/jupyter/kernels/study
Remove 1 kernel specs [y/N]: y
[RemoveKernelSpec] Removed /home/fxyang/.local/share/jupyter/kernels/study
Python3 这个核心指向当你激活的虚拟环境,一般都不会使用 base 环境作为开发环境,一个工程,一个环境。
来源:https://blog.csdn.net/curledgoat/article/details/122265400
标签:jupyter,notebook,内核
0
投稿
猜你喜欢
MySQL中触发器入门简单实例与介绍
2024-01-17 15:02:30
如何使用Python实现一个简易的ORM模型
2021-05-18 19:24:46
利用Python绘画双摆操作分享
2022-12-08 21:30:36
使用Python给头像戴上圣诞帽的图像操作过程解析
2023-03-17 13:22:01
sql中的 where 、group by 和 having 用法解析
2024-01-14 05:12:13
python pexpect ssh 远程登录服务器的方法
2021-07-10 22:28:53
pytorch model.cuda()花费时间很长的解决
2021-12-08 08:02:06
MySQL查询性能优化七种方式索引潜水
2024-01-20 01:11:35
JQuery的Ajax请求实现局部刷新的简单实例
2024-05-02 17:05:17
Python面向对象编程(二)
2022-11-27 23:17:55
Python利用matplotlib绘制折线图的新手教程
2021-08-18 18:00:01
nodejs对项目下所有空文件夹创建gitkeep的方法
2024-05-08 09:37:40
解密SQL Server数据库系统的编译
2009-03-16 17:33:00
Python混合使用同步和异步函数的方法
2021-07-19 05:01:05
通过asp程序来创建access数据库
2011-04-02 11:17:00
Windows Server 2019 MySQL数据库的安装与配置理论+远程连接篇
2024-01-18 21:19:56
MySQL索引失效十种场景与优化方案
2024-01-26 06:07:33
JavaScript caller与callee属性
2009-01-19 13:39:00
十行代码使用Python写一个USB病毒
2021-08-27 17:05:41
Django前后端分离csrf token获取方式
2021-03-15 04:23:43