如何在jupyter notebook中添加虚拟环境的运行内核
时间: 2023-11-08 08:05:46 浏览: 87
datacube-notebooks:有关将ODC与Jupyter Notebooks一起使用的其他文档
在 Jupyter Notebook 中添加虚拟环境的运行内核,你可以按照以下步骤进行:
1. 在虚拟环境中安装 `ipykernel` 包:
```
pip install ipykernel
```
2. 在虚拟环境中运行以下命令,将该虚拟环境添加到 Jupyter Notebook 的 Kernel 中:
```
python -m ipykernel install --user --name=your_env_name --display-name "Python (your_env_name)"
```
其中,`your_env_name` 是你的虚拟环境的名称,`Python (your_env_name)` 是该虚拟环境在 Jupyter Notebook 中显示的名称。
3. 重启 Jupyter Notebook,就可以在 Kernel 列表中看到你添加的虚拟环境内核了。
当你在 Jupyter Notebook 中使用该虚拟环境内核时,Jupyter Notebook 会自动使用该虚拟环境中的 Python 解释器,从而保证你的代码能够在正确的环境中运行。
阅读全文