Python版本和Jupyter Notebook的问题

时间:2018-10-10 16:00:20

标签: python python-2.7 jupyter-notebook

所以我使用anaconda创建了一个python 2.7 env“ gdsenv”:

enter image description here

然后我安装了jupyter内核:

enter image description here

...到目前为止看来还不错。

问题是,如果我打开jupyter-notebook,我不会得到python 2.7选项(我在另一个env上安装了python 3.5):

enter image description here

这是为什么,我该如何解决?

1 个答案:

答案 0 :(得分:2)

看看是否可以install an ipython kernel for python2

我没有安装anaconda,但这是它在使用style="@style/Widget.MaterialComponents.Button.TextButton" 创建的虚拟环境中的工作方式:

  1. 安装jupyter:
    python2 -m virtualenv jupyter-test
  2. 为python2安装ipython内核:
    python2 -m pip install jupyter
    python2 -m pip install ipykernel
  3. 不要启动jupyter [![ebook
    python2 -m ipykernel install --user] [1]] [1]

您现在应该能够创建python2内核:

Python 2 Notebook

另请参阅此似乎相关的问题: Using both Python 2.x and Python 3.x in IPython Notebook