1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
.. _install_index:
============
Installation
============
.. toctree::
:maxdepth: 3
:hidden:
install
kernel_install
This sections will guide you through :ref:`installing IPython itself <install>`, and
installing :ref:`kernels for Jupyter <kernel_install>` if you wish to work with
multiple version of Python, or multiple environments.
Quick install reminder
~~~~~~~~~~~~~~~~~~~~~~
Here is a quick reminder of the commands needed for installation if you are
already familiar with IPython and are just searching to refresh your memory:
Install IPython:
.. code-block:: bash
$ pip install ipython
Install and register an IPython kernel with Jupyter:
.. code-block:: bash
$ python -m pip install ipykernel
$ python -m ipykernel install [--user] [--name <machine-readable-name>] [--display-name <"User Friendly Name">]
for more help see
.. code-block:: bash
$ python -m ipykernel install --help
.. seealso::
`Installing Jupyter <http://jupyter.readthedocs.io/en/latest/install.html>`__
The Notebook, nbconvert, and many other former pieces of IPython are now
part of Project Jupyter.
|