ubuntu配置jupyter内核
时间: 2023-10-17 13:06:35 浏览: 165
Linux下安装配置Jupyter notebook并启动
5星 · 资源好评率100%
安装jupyter内核的步骤如下:
1. 首先,确保已经安装了miniconda3。
2. 打开终端并输入以下命令安装jupyter内核:
```
conda install -c conda-forge xeus-cling
```
3. 安装完成后,输入以下命令以激活新安装的内核:
```
conda activate xeus-cling
```
4. 最后,输入以下命令以启动jupyter notebook:
```
jupyter notebook
```
请注意,以上步骤适用于在Ubuntu上配置jupyter内核。希望对你有所帮助。
阅读全文