jupyter notebook增加kernel

背景:
mac ox10.11
已安装anaconda3和3下的jupyter notebook,打开jn只能看到py3一个kernel。
希望在jupiter notebook中再添加python2的kernel。

1.配置python2的环境

conda create -n python27 python=2.7

2.成功以后通过python2.7的ipykernel在jupiter notebook中添加kernel

 #激活py2的环境
source activate python27

#在python2环境下安装ipykernel
conda install notebook ipykernel

#在jupiter notebook中添加新kernel,命名为python2
python27 -m ipykernel install --name python2

参考
https://ipython.readthedocs.io/en/latest/install/kernel_install.html#kernels-for-python-2-and-3

你可能感兴趣的:(jupyter notebook增加kernel)