打开 'ipython notebook' 为:IPython notebook vs Jupyter
Open 'ipython notebook' as: IPython notebook vs Jupyter
我希望找到有关以下内容的更多文档:
From one computer: C:\Python>ipython notebook
opens the browser as 'IPython Notebook'.
From second computer: C:\Python>ipython notebook
opens the browser as 'Jupyter'.
我没有偏好,但是 从 'Jupyter' 浏览器保存时,我无法再在 'IPython Notebook' 浏览器。我遇到 “错误请求” 错误。
最初我假设 'ipython notebook' 已更新为使用 'Jupyter' 作为其浏览器,所以我在两台计算机上更新 (pip install "ipython[notebook]"
) 但没有任何效果。显然我错过了一些东西。
是否 ipython notebook
切换到使用 Jupyter?如果是这样,我是否错误地更新了 IPython?
ipython Notebook 现在称为 Jupyter,所以可能在另一台计算机上安装了不同版本的 Anaconda?
所以 Jupyter 是 ipython Notebook 将继续发展的 - 他们放弃了 python 因为它现在基本上是 "agnostic":它可以加载不同的语言 - python 2 或 3,还有 R 、 Julia 等。
关于 Jupyter 的有用视频 intro
你可以试试:
pip install --upgrade "ipython[all]"
ipython
本身仍然是一个活跃的项目——一个交互式的 python 程序。 jupyter
是一个 language-agnostic 应用程序,它从 ipython
(具体来说,ipython notebook
)分支 。
jupyter notebook
是 ipython
版本的概括 ---- 它现在是 web-app 可以用作各种不同语言的笔记本(不仅仅是 python
)。 jupyter notebook
仍然使用 ipython
作为 'kernel' 用于 运行 python 代码。
至于你的问题的实际方面:为了将来,你应该使用jupyter
启动笔记本而不是ipython
。现在是存在于所有标准包管理器中。
来自 ipython 主页:
Jupyter and the future of IPython
IPython is a growing project, with increasingly language-agnostic
components. IPython 3.x was the last monolithic release of IPython,
containing the notebook server, qtconsole, etc. As of IPython 4.0, the
language-agnostic parts of the project: the notebook format, message
protocol, qtconsole, notebook web application, etc. have moved to new
projects under the name Jupyter. IPython itself is focused on
interactive Python, part of which is providing a Python kernel for
Jupyter.
我希望找到有关以下内容的更多文档:
From one computer:
C:\Python>ipython notebook
opens the browser as 'IPython Notebook'.From second computer:
C:\Python>ipython notebook
opens the browser as 'Jupyter'.
我没有偏好,但是 从 'Jupyter' 浏览器保存时,我无法再在 'IPython Notebook' 浏览器。我遇到 “错误请求” 错误。
最初我假设 'ipython notebook' 已更新为使用 'Jupyter' 作为其浏览器,所以我在两台计算机上更新 (pip install "ipython[notebook]"
) 但没有任何效果。显然我错过了一些东西。
是否 ipython notebook
切换到使用 Jupyter?如果是这样,我是否错误地更新了 IPython?
ipython Notebook 现在称为 Jupyter,所以可能在另一台计算机上安装了不同版本的 Anaconda?
所以 Jupyter 是 ipython Notebook 将继续发展的 - 他们放弃了 python 因为它现在基本上是 "agnostic":它可以加载不同的语言 - python 2 或 3,还有 R 、 Julia 等。
关于 Jupyter 的有用视频 intro
你可以试试:
pip install --upgrade "ipython[all]"
ipython
本身仍然是一个活跃的项目——一个交互式的 python 程序。 jupyter
是一个 language-agnostic 应用程序,它从 ipython
(具体来说,ipython notebook
)分支 。
jupyter notebook
是 ipython
版本的概括 ---- 它现在是 web-app 可以用作各种不同语言的笔记本(不仅仅是 python
)。 jupyter notebook
仍然使用 ipython
作为 'kernel' 用于 运行 python 代码。
至于你的问题的实际方面:为了将来,你应该使用jupyter
启动笔记本而不是ipython
。现在是存在于所有标准包管理器中。
来自 ipython 主页:
Jupyter and the future of IPython
IPython is a growing project, with increasingly language-agnostic components. IPython 3.x was the last monolithic release of IPython, containing the notebook server, qtconsole, etc. As of IPython 4.0, the language-agnostic parts of the project: the notebook format, message protocol, qtconsole, notebook web application, etc. have moved to new projects under the name Jupyter. IPython itself is focused on interactive Python, part of which is providing a Python kernel for Jupyter.