Anaconda3和jupyter notebook 安装python2内核

添加python2环境
conda create --name test_py2 python=2.7
激活进入python2环境
conda activate test_py2

jupyter notebook添加python2内核
查看已有内核
jupyter kernelspec list
安装python2内核
ipython kernel install --name python2
再次查看已有内核就发现python2

你可能感兴趣的:(Anaconda3和jupyter notebook 安装python2内核)