Installing matplotlib on Mac OS X
The easiest way to get matplotlib on the Mac OS X is to use prepackaged python distributions such as Enthought Python Distribution (EPD). Just go to the EPD site, and download and install the latest stable version for your OS.
In case you are not satisfied with EPD or cannot use it for other reasons such as the versions distributed with it, there is a manual (read: harder) way of installing Python, matplotlib, and its dependencies.
Getting ready
We will use the Homebrew (you could also use MacPorts in the same way) project that eases the installation of all software that Apple did not install on your OS, including Python and matplotlib. Under the hood, Homebrew is a set of Ruby and Git that automate download and installation. Following these instructions should get the installation working. First, we will install Homebrew, and then Python, followed by tools such as virtualenv, then dependencies for matplotlib (NumPy and SciPy), and finally matplotlib. Hold on, here we go.
How to do it...
- In your terminal, paste and execute the following command:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
After the command finishes, try running brew update or brew doctor to verify that the installation is working properly.
- Next, add the
Homebrew
directory to your system path, so the packages you install using Homebrew have greater priority than other versions. Open~/.bash_profile
(or/Users/[your-user-name]/.bash_profile
) and add the following line to the end of file:export PATH=/usr/local/bin:$PATH
- You will need to restart the terminal so that it picks a new path. Installing Python is as easy as firing up another one liner:
brew install python --framework --universal
This will also install any prerequisites required by Python.
- Now, you need to update your path (add to the same line):
export PATH=/usr/local/share/python:/usr/local/bin:$PATH
- To verify that the installation has worked, type
python --version
in the command line, you should see 2.7.3 as the version number in the response. - You should have pip installed by now. In case it is not installed, use
easy_install
to add pip:$ easy_install pip
- Now, it's easy to install any required package; for example,
virtualenv
andvirtualenvwrapper
are useful:pip install virtualenv pip install virtualenvwrapper
- The next step is what we really wanted to do all along—install matplotlib:
pip install numpy brew install gfortran pip install scipy
- Verify that everything is working. Call Python and execute the following commands:
import numpy print numpy.__version__ import scipy print scipy.__version__ quit()
- Install
matplotlib
:pip install matplotlib