Jupyter Notebook中让python2和python3内核共存

自己计算机里面共存了Python2和Python3,ipython作为试探性的REPL解释器使用的频率还是挺高的,分别在2和3下安装完ipython notebook后怎么分别使用这两种内核呢

按照默认的 jupyter notebook命令,只能运行一种内核,如Python2,想运行Python3内核怎么办呢?

ipython kernel install --name python2  

ipython kernel install --name python3

原文地址:https://www.cnblogs.com/lijinze-tsinghua/p/8667322.html