怎么将conda activate test1虚拟环境应用到jupyter notebook中
时间: 2023-06-16 12:08:20 浏览: 194
有以下两种方法可以将conda虚拟环境应用到jupyter notebook中:
1. 安装ipykernel并创建kernel
1.1 安装ipykernel
在命令行中输入以下命令安装ipykernel:
```
conda install ipykernel
```
1.2 创建kernel
在conda虚拟环境中运行以下命令创建kernel:
```
python -m ipykernel install --user --name=test1 --display-name="Python (test1)"
```
其中,`--name`参数指定kernel名称,`--display-name`参数指定在jupyter notebook中显示的kernel名称。
2. 使用nb_conda_kernels
nb_conda_kernels是一个conda插件,它可以自动将conda虚拟环境中的kernel添加到jupyter notebook中。
2.1 安装nb_conda_kernels
在命令行中输入以下命令安装nb_conda_kernels:
```
conda install nb_conda_kernels
```
2.2 创建conda虚拟环境
在conda虚拟环境中安装需要的包。
2.3 启动jupyter notebook
在命令行中输入以下命令启动jupyter notebook:
```
jupyter notebook
```
2.4 选择kernel
在jupyter notebook中,点击右上角的“New”按钮,选择“Python 3”或其他需要的kernel,即可使用conda虚拟环境中的包。
无论是哪种方法,都需要先激活conda虚拟环境,然后再启动jupyter notebook。
阅读全文