【经验总结】Jupyter 配置内核

1. 背景描述

使用 国家超算互联网中心 的服务器,创建

jupyterlab 容器,想在之前 conda 创建的环境中运行,可是不行,进入容器就直接进入 jupyterlab

2. 解决方法

配置内核

2.1 激活环境

bash 复制代码
conda activate peft

2.2 安装内核

bash 复制代码
pip install ipykernel -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install ipywidgets -i https://pypi.tuna.tsinghua.edu.cn/simple

2.3 添加内核

bash 复制代码
~$ python -m ipykernel install --user --name=peft  --display-name peft
Installed kernelspec peft in /public/home/acc5trotmy/.local/share/jupyter/kernels/peft

查看内核

bash 复制代码
$ jupyter kernelspec list
Available kernels:
  python3    /public/home/acc5trotmy/.conda/envs/peft/share/jupyter/kernels/python3
  peft       /public/home/acc5trotmy/.local/share/jupyter/kernels/peft

此时启动页有了 peft 内核

3. 使用内核

打开任意 .ipynb 的python 代码,在右上方小甲虫旁边 选择内核

相关推荐
小袁在上班21 分钟前
Python 单元测试中的 Mocking 与 Stubbing:提高测试效率的关键技术
python·单元测试·log4j
白狐欧莱雅23 分钟前
使用python中的pygame简单实现飞机大战游戏
经验分享·python·游戏·pygame
阿_旭25 分钟前
基于YOLO11/v10/v8/v5深度学习的维修工具检测识别系统设计与实现【python源码+Pyqt5界面+数据集+训练代码】
人工智能·python·深度学习·qt·ai
阿_旭29 分钟前
基于YOLO11/v10/v8/v5深度学习的煤矿传送带异物检测系统设计与实现【python源码+Pyqt5界面+数据集+训练代码】
人工智能·python·深度学习·目标检测·yolo11
测试19981 小时前
外包干了2年,快要废了。。。
自动化测试·软件测试·python·面试·职场和发展·单元测试·压力测试
豆本-豆豆奶2 小时前
用 Python 写了一个天天酷跑(附源码)
开发语言·python·游戏·pygame·零基础教程
_.Switch2 小时前
Serverless架构与自动化运维
运维·python·缓存·自动化·运维开发
影雀3 小时前
大模型开发企业智能小助手应用上篇
python
过期动态3 小时前
详解Python面向对象程序设计
开发语言·python·pycharm·django
兜里有糖请分享3 小时前
Python中序列化/反序列化JSON格式的数据
爬虫·python