@header@

Installing matplotlib

matplotlib requires at a minimum python 2.3, numpy, freetype and libpng. To get the most out of matplotlib, you will want to build some of the optional GUI and image extensions, discussed below. Matplotlib is known to work on linux, unix, win32 and OS X platforms.

There are two kinds of matplotlib backends: vector based and raster based. The vector based backends, SVG and PS, produce ASCII text output files *.svg and *.ps; the PDF backend roduces a binary *.pdf output files. The core raster based renderer is the antigrain (agg) backend. This is a high quality 2D library that supports fast antialiasing, alpha blending and much more. If you want to produce PNGs or GUI images that support all of matplotlib's features, you should compile matplotlib with agg support and use one of the GUI agg backends as described below: GTKAgg, WXAgg, TkAgg or FLTKAgg. All of these features are included in the windows installer

Compiling

You probably don't need to compile matplotlib unless you want to or work on an obscure platform. There are binary builds for Windows, OS X and many major linux distributions; see below. If you do want to compile, read on.

You will need to have recent versions of freetype, libpng and zlib installed on your system. If you are using a package manager, also make sure the devel versions of these packages are also installed (eg freetype-devel).

matplotlib ships with a site.cfg.template file which you should copy to site.cfg and edit if you want to configure the build process, such as which user interfaces to build.

      python setup.py build
      python setup.py install
There are many defaults that you can control in matplotlib in the matplotlibrc file.

Windows

If you don't already have python installed, you may want to consider using the enthought edition of python, which has numpy, scipy, and wxpython, plus a lot of other goodies, preinstalled - enthought python . With the enthought edition of python + matplotlib installer, the following backends should work out of the box: agg, wx, wxagg, tkagg, ps and svg.

For standard python installations, you will also need to install numpy in addition to the matplotlib installer. With a standard python + numpy + matplotlib, the following backends should work on windows: agg, tkagg, ps, svg. If you want others, eg a wx, wxagg, gtk or gtkagg, you'll need to install the requisite GUI toolkits, as described on backends. This is fairly easy, as both wxpython and pygtk come with windows friendly installers. The latter includes an additional requirement of the GTK runtime.

All of the GUI backends run on windows, but TkAgg is probably the best for interactive use from the standard python shell or ipython. The windows installer (*.exe or *.egg) on the download page contains all the code you need to get up and running. However, there are many examples that are not included in the windows installer. If you want to try the many demos that come in the matplotlib src distribution, download the zip file and look in the examples subdir.

Important: There are known conflicts with some of the backends with some python IDEs such as pycrust, idle. If you want to use matplotlib from an IDE, please consult backends for compatibility information. You will have the greatest likelihood of success if you run the examples from the command shell or by double clicking on them, rather than from an IDE. If you are interactively generating plots, your best bet is TkAgg from the standard python shell or ipython.

OS X

All of the backends run on OS X. Chris Barker has built a binary package (fink users see below) for matplotlib which is hosted on pythonmac, and works with Agg, Wx and Tk. If you want to compile yourself on OS X, make sure you read the compiling instructions above. There is a wiki page that covers build matplotlib (and other scientific python packages) from svn at InstallationOSX

Note when running a GUI backend in OSX, you should launch your programs with pythonw rather than python, or you may get nonresponsive GUIs.

Package Managers: (rpms, apt, fink)

RPMS

To build all the backends on a binary linux distro such as redhat, you need to install a number of the devel libs (and whatever dependencies they require), I suggest

Debian

Vittorio Palmisano maintails the debian packages

Fink

fink users should use Jeffrey Whitaker's fink distribution, which supports the GTK, TkAgg, GTKAgg, PS, WX, WXAgg and Agg backends. See matplotlib fink @footer@