我在Debian Jessie上安装了:
Python2.7
Python3.5
我还通过pip2
和安装了Jupyterpip3
但是当我启动时jupyter-notebook
我只能使用python3作为内核!使用Jupyter时如何切换到pyhton2.7?
我在Digital Ocean上用新的Debian 8.5机器尝试了这个.
作为root,安装pip
和jupyter
apt,以及开发包.
apt-get install python-pip python-dev python3-pip python3-dev libzmq3 pip3 install jupyter
使用该ipykernel
模块为Python2添加内核.已经安装了Python3内核.
pip install ipykernel python2 -m ipykernel install
当您运行jupyter notebook
,你应该有两个Python 2
,并Python 3
可用内核上市.请注意,Tornado笔记本服务器在端口8888上提供HTTP服务,默认情况下,许多计算机上都没有打开它.这是一个将为您运行Jupyter的脚本,打开和关闭端口8888并在公共IP上运行.