在 jupyter notebook 中添加不同的 python 内核。
由于在 anaconda2 中安装了虚拟环境 tensorflow, 且虚拟环境中的 python 为 3.5,在虚拟环境中安装了 jupyter notebook,当在虚拟环境中的 jupyter notebook 中新建脚本时,只能选择 python3,因此想要把 anaconda2 中 2.7 的 python 内核导入进来,这样可以直接在一个 jupyter notebook 中新建不同内核的 python 脚本。
本文介绍在 python3 中添加 python2 内核。
首先确认在Python3下已安装了内核:
1 | ipython kernel install --user |
or
1 | python3 -m ipykernel install --user |
然后确保 python2 下安装了 ipykernel
1 | sudo pip2 install -U ipykernel |
然后运行如下命令:
1 | python2 -m ipykernel install --user |
至此,运行 jupyter notebook 就可以添加多个内核。