Jupyter Notebook 中使用Anaconda创建的虚拟环境

Jupyter Notebook 默认不能使用Anaconda中创建的虚拟环境,需要进行配置,步骤如下:

1
2
3
4
5
6
7
8
9
10
# 创建虚拟环境
conda create -n DOTA_devkit python=3.6
source activate DOTA_devkit

# 安装ipykernel模块
conda install ipykernel
python -m ipykernel install --user --name DOTA_devkit --display-name "DOTA_devkit"

# 启动jupyter notebook
jupyter notebook

结果如下: