Skip to content

DOC: note that ipympl is external dependency #9126

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 31, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 23 additions & 2 deletions tutorials/introductory/usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,9 @@ def my_plotter(ax, data1, data2, param_dict):
# ============ ================================================================
# Qt5Agg Agg rendering in a :term:`Qt5` canvas (requires PyQt5_). This
# backend can be activated in IPython with ``%matplotlib qt5``.
# ipympl Agg rendering embedded in a Jupyter widget. This can be enabled
# in a Jupyter notebook with ``%matplotlib ipympl``
# ipympl Agg rendering embedded in a Jupyter widget. (requires ipympl)
# This can be enabled in a Jupyter notebook with
# ``%matplotlib ipympl``
# GTK3Agg Agg rendering to a :term:`GTK` 3.x canvas (requires PyGObject_
# and pycairo_ or cairocffi_)
# This backend can be activated in IPython with
Expand Down Expand Up @@ -465,6 +466,26 @@ def my_plotter(ax, data1, data2, param_dict):
# .. _PyQt4: https://riverbankcomputing.com/software/pyqt/intro
# .. _PyQt5: https://riverbankcomputing.com/software/pyqt/intro
#
# ipympl
# ------
#
# The Jupyter widget ecosystem is moving too fast to support directly in
# Matplotlib. To install ipympl
#
# .. code-block:: bash
#
# pip install ipympl
# jupyter nbextension enable --py --sys-prefix ipympl
#
# or
#
# .. code-block:: bash
#
# conda install ipympl -c conda-forge
#
# See `jupyter-matplotlib <https://github.com/matplotlib/jupyter-matplotlib>`__
# for more details.
#
# GTK and Cairo
# -------------
#
Expand Down