Python Jupyter笔记本:Python3显示,但Python2运行

时间:2017-10-01 19:24:46

标签: python-3.x jupyter-notebook ubuntu-16.04

我正在尝试在GSE(Google Compute Engine)上设置我的Ubuntu 16.04服务器。我在这里遇到了一个问题。

enter image description here

你可以从右上角看到,它已经是Python 3内核了。

目前,我认为我的问题出现是因为我第一次按照Using both Python 2.x and Python 3.x in IPython Notebook的指示:

  1. 创建此目录:mkdir -p ~/.ipython/kernels/python3

  2. 使用此

    创建此文件~/.ipython/kernels/python3/kernel.json

    内容:     {         “display_name”:“IPython(Python 3)”,         “语言”:“蟒蛇”,         “argv”:[             “python3”             “-c”,“来自IPython.kernel.zmq.kernelapp import main; main()”,             “-f”,“{connection_file}”         ]         “codemirror_mode”:{             “版本”:2,             “名字”:“ipython”         }     }

    然后我通过pip3安装了jupyter(我认为是python3):

    $ sudo apt-get install ipython3 $ pip3 install jupyter

  3. 但我怎么在这里解决这个问题?

    谢谢!

1 个答案:

答案 0 :(得分:0)

我已经弄明白了。您唯一需要做的就是重新启动实例。我不知道为什么会这样。但它在某种程度上解决了我的问题。