ipython notebook command in anaconda opens jupyter notebook?

Gurminder Bharani

The following is the command and the result.

[Anaconda2] C:\Users\Gurminder>ipython notebook
[TerminalIPythonApp] WARNING | Subcommand `ipython notebook` is deprecated and will be removed in future versions.
[TerminalIPythonApp] WARNING | You likely want to use `jupyter notebook`... continue in 5 sec. Press Ctrl-C to quit now.
[I 17:56:25.760 NotebookApp] Serving notebooks from local directory: C:\Users\Gurminder
[I 17:56:25.763 NotebookApp] 0 active kernels
[I 17:56:25.763 NotebookApp] The IPython Notebook is running at: http://localhost:8888/
[I 17:56:25.766 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).

And the display on the browser looks like following:

enter image description here

Why is it launching jupyter when I am giving the command to launch ipython.

I have updated all the packages including ipython.

kazemakase

The answer is on the IPython website:

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.

In summary, what previously was known as the IPython notebook now is the Jupyter notebook. Apart from the name, they are practically the same.

It even says so in the warning message you get:

[TerminalIPythonApp] WARNING | Subcommand `ipython notebook` is deprecated and will be removed in future versions.
[TerminalIPythonApp] WARNING | You likely want to use `jupyter notebook`... continue in 5 sec. Press Ctrl-C to quit now.

ipython notebook is deprecated and you should use jupyter notebook instead, but IPython plays nice and runs the Jupyter notebook for you.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

R: is there something like iPython notebook (jupyter) for R?

From Dev

IPython/Jupyter notebook shortcut not working on Mac

From Dev

can not start ipython notebook from anaconda

From Dev

IPython/Jupyter notebook 3 - hide headers by default

From Dev

Jupyter (IPython) notebook: Convert an HTML notebook to ipynb

From Dev

ggvis in jupyter/ipython notebook

From Dev

Anaconda: Python 3 and 2 in IPython/Jupyter Notebook

From Dev

Open 'ipython notebook' as: IPython notebook vs Jupyter

From Dev

R not producing a figure in jupyter (IPython notebook)

From Dev

Changing the default port for iPython notebook server / Jupyter

From Dev

How to add bookmark to IPython/Jupyter Notebook

From Dev

Can a Jupyter / IPython notebook take arguments in the URL?

From Dev

How to add automatically extension to Jupyter (ipython) notebook?

From Dev

Automate standard jupyter/ipython notebook imports

From Dev

autoupdate module in IPython / jupyter notebook

From Dev

Ipython Notebook: where is jupyter_notebook_config.py in Mac?

From Dev

Export individual cell in IPython/Jupyter notebook

From Dev

Default template for iPython notebook (using Jupyter)

From Dev

Is there a way to print a jupyter/ipython notebook slide presentation?

From Dev

How to type in norm (latex) in ipython notebook (Jupyter)?

From Dev

Using ipython magics in R jupyter notebook?

From Dev

Change level logged to IPython/Jupyter notebook

From Dev

Passing command line arguments to argv in jupyter/ipython notebook

From Dev

Run ipython notebook in different anaconda environment (in script)

From Dev

How to connect Jupyter Ipython notebook to Amazon redshift

From Dev

Recovering command history in Jupyter Notebook?

From Dev

Anaconda jupyter notebook

From Dev

ipython/Jupyter notebook with authentication

From Dev

Jupyter iPython Notebook and Command Line yield different results

Related Related

  1. 1

    R: is there something like iPython notebook (jupyter) for R?

  2. 2

    IPython/Jupyter notebook shortcut not working on Mac

  3. 3

    can not start ipython notebook from anaconda

  4. 4

    IPython/Jupyter notebook 3 - hide headers by default

  5. 5

    Jupyter (IPython) notebook: Convert an HTML notebook to ipynb

  6. 6

    ggvis in jupyter/ipython notebook

  7. 7

    Anaconda: Python 3 and 2 in IPython/Jupyter Notebook

  8. 8

    Open 'ipython notebook' as: IPython notebook vs Jupyter

  9. 9

    R not producing a figure in jupyter (IPython notebook)

  10. 10

    Changing the default port for iPython notebook server / Jupyter

  11. 11

    How to add bookmark to IPython/Jupyter Notebook

  12. 12

    Can a Jupyter / IPython notebook take arguments in the URL?

  13. 13

    How to add automatically extension to Jupyter (ipython) notebook?

  14. 14

    Automate standard jupyter/ipython notebook imports

  15. 15

    autoupdate module in IPython / jupyter notebook

  16. 16

    Ipython Notebook: where is jupyter_notebook_config.py in Mac?

  17. 17

    Export individual cell in IPython/Jupyter notebook

  18. 18

    Default template for iPython notebook (using Jupyter)

  19. 19

    Is there a way to print a jupyter/ipython notebook slide presentation?

  20. 20

    How to type in norm (latex) in ipython notebook (Jupyter)?

  21. 21

    Using ipython magics in R jupyter notebook?

  22. 22

    Change level logged to IPython/Jupyter notebook

  23. 23

    Passing command line arguments to argv in jupyter/ipython notebook

  24. 24

    Run ipython notebook in different anaconda environment (in script)

  25. 25

    How to connect Jupyter Ipython notebook to Amazon redshift

  26. 26

    Recovering command history in Jupyter Notebook?

  27. 27

    Anaconda jupyter notebook

  28. 28

    ipython/Jupyter notebook with authentication

  29. 29

    Jupyter iPython Notebook and Command Line yield different results

HotTag

Archive