When installing through a package manager like pip or conda, the
mandatory dependencies are automatically installed. This list is mainly for
reference.
- Python (>= 3.8)
- NumPy (>= 1.19)
- setuptools
- cycler (>= 0.10.0)
- dateutil (>= 2.7)
- kiwisolver (>= 1.0.1)
- Pillow (>= 6.2)
- pyparsing (>=2.2.1)
- fontTools (>=4.22.0)
The following packages and tools are not required but extend the capabilities of Matplotlib.
Matplotlib figures can be rendered to various user interfaces. See :ref:`what-is-a-backend` for more details on the optional Matplotlib backends and the capabilities they provide.
- Tk (>= 8.4, != 8.6.0 or 8.6.1) [1]: for the Tk-based backends.
- PyQt6 (>= 6.1), PySide6, PyQt5, or PySide2: for the Qt-based backends.
- PyGObject: for the GTK-based backends [2].
- wxPython (>= 4) [3]: for the wx-based backends.
- pycairo (>= 1.11.0) or cairocffi (>= 0.8): for the GTK and/or cairo-based backends.
- Tornado (>=5): for the WebAgg backend.
- macOS (>=10.12): for the macosx backend.
| [1] | Tk is part of most standard Python installations, but it's not part of Python itself and thus may not be present in rare cases. |
| [2] | If using pip (and not conda), PyGObject must be built from source; see https://pygobject.readthedocs.io/en/latest/devguide/dev_environ.html. |
| [3] | If using pip (and not conda) on Linux, wxPython wheels must be manually downloaded from https://wxpython.org/pages/downloads/. |
- ffmpeg: for saving movies.
- ImageMagick: for saving animated gifs.
- LaTeX (with cm-super ) and GhostScript (>=9.0) : for rendering text with LaTeX.
- fontconfig (>= 2.7): for detection of system fonts on Linux.
Matplotlib brings its own copies of the following libraries:
Agg: the Anti-Grain Geometry C++ rendering enginettconv: a TrueType font utility
Additionally, Matplotlib depends on:
- FreeType (>= 2.3): a font rendering library
- QHull (>= 2020.2): a library for computing triangulations
By default, Matplotlib downloads and builds its own copies of FreeType (this is necessary to run the test suite, because different versions of FreeType rasterize characters differently) and of Qhull. As an exception, Matplotlib defaults to the system version of FreeType on AIX.
To force Matplotlib to use a copy of FreeType or Qhull already installed in your system, create a :file:`mplsetup.cfg` file with the following contents:
[libs]
system_freetype = true
system_qhull = truebefore running python -m pip install ..
In this case, you need to install the FreeType and Qhull library and headers. This can be achieved using a package manager, e.g. for FreeType:
# Pick ONE of the following:
sudo apt install libfreetype6-dev # Debian/Ubuntu
sudo dnf install freetype-devel # Fedora
brew install freetype # macOS with Homebrew
conda install freetype # conda, any OS(adapt accordingly for Qhull).
On Linux and macOS, it is also recommended to install pkg-config, a helper tool for locating FreeType:
# Pick ONE of the following:
sudo apt install pkg-config # Debian/Ubuntu
sudo dnf install pkgconf # Fedora
brew install pkg-config # macOS with Homebrew
conda install pkg-config # conda
# Or point the PKG_CONFIG environment variable to the path to pkg-config:
export PKG_CONFIG=...If not using pkg-config (in particular on Windows), you may need to set the include path (to the library headers) and link path (to the libraries) explicitly, if they are not in standard locations. This can be done using standard environment variables -- on Linux and OSX:
export CFLAGS='-I/directory/containing/ft2build.h'
export LDFLAGS='-L/directory/containing/libfreetype.so'and on Windows:
set CL=/IC:\directory\containing\ft2build.h
set LINK=/LIBPATH:C:\directory\containing\freetype.libIf you go this route but need to reset and rebuild to change your settings, remember to clear your artifacts before re-building:
git clean -xfd
This section lists the additional software required for :ref:`running the tests <testing>`.
Required:
- pytest (>=3.6)
- Ghostscript (>= 9.0, to render PDF files)
- Inkscape (to render SVG files)
Optional:
- pytest-cov (>=2.3.1) to collect coverage information
- pytest-flake8 to test coding standards using flake8
- pytest-timeout to limit runtime in case of stuck tests
- pytest-xdist to run tests in parallel
The additional Python packages required to build the :ref:`documentation <documenting-matplotlib>` are listed in :file:`doc-requirements.txt` and can be installed using
pip install -r requirements/doc/doc-requirements.txt
The content of :file:`doc-requirements.txt` is also shown below:
Required:
- a minimal working LaTeX distribution
- Graphviz
- the following LaTeX packages (if your OS bundles TeXLive, the "complete" version of the installer, e.g. "texlive-full" or "texlive-all", will often automatically include these packages):
Optional, but recommended:
- Inkscape
- optipng
- the font "Humor Sans" (aka the "XKCD" font), or the free alternative Comic Neue
- the font "Times New Roman"
Note
The documentation will not build without LaTeX and Graphviz. These are not Python packages and must be installed separately. The documentation can be built without Inkscape and optipng, but the build process will raise various warnings. If the build process warns that you are missing fonts, make sure your LaTeX distribution bundles cm-super or install it separately.