Should I use brew or pip for installing matplotlib?

12,461

Solution 1

I recommend using a package manager (brew, indeed, or MacPorts). Here are a few reasons why:

  • If you use your package manager (MacPorts, brew,…) to later install additional programs that depend on Matplotlib, the package manager will install it regardless.

  • If you install a Python package via pip, and pip installs it in your package manager tree (MacPorts, brew,…), the package manager might complain. For example, MacPorts does not want to erase pip-installed packages, as a precaution, so compilation stops when MacPort detects that someone walked on its turf. The best way of installing Python packages is to first check if they are provided by your package manager, and then only install them with pip if they are not.

  • Compilation with pip sometimes fails where a package manager (MacPorts,…) has no problem: package managers are simply more powerful and general tools (they play nicely with required compiled libraries, for instance).

  • I would not recommend using a separate distribution of Matplotlib, for the same kind of reasons: any program from brew that depends on Matplotlib will install it anyway. Furthermore, if you instead want to install such a program without your package manager, it is generally hard to make it work with a specific distribution of Matplotlib (they might need libraries to be installed of top of it, etc.).

In summary, I would recommend to use one system for everything (brew, since this is what you chose), and pip for things that this system does not provide (just make sure that the pip you use corresponds to where you want things to go: your package manager's Python library, with the right version, or the OS-provided Python,…). Multiplying tools and installs is too messy, in my experience, as various distributions/package managers/etc. are usually not meant to play well with each other.

Solution 2

Since you need compile many of these packages, it is not the simplest task on the Mac. I would recommend to use a distribution like Anaconda. It is free, comes with all the things you need and has a simple installer. It will save you a lot of hassle because all components work together.

Solution 3

Brew does not have a clean matplotlib port; the port that brew search matplotlib finds is for python2, not python3.

However, Brew's python3 installation recommends that pip3 be used to install python3 packages. This installs the Python3 packages into /usr/local/lib/python3.3/site-packages. I think that Brew's approach may be better than MacPort's, as with MacPorts I am constantly having MacPorts update python packages that don't need to be updated, and it's tracking of each python version independently of python is somewhat confusing to me.

However, pip3 now complains on installing matplotlib, saying that it is externally hosted which is a security vulnerability and will be disabled in the future.

Solution 4

Edit: IMHO virtualenv and virtualenvwrapper have now been largely supplanted by the superb combination of pyenv and pipenv which combine to provide wonderfully isolated python version and dependency management. It makes it worth considering setting up dummy projects even if you want to just play around with various python packages. Dependencies are tracked stably and pipenv includes functionality for checking package updates and security issues. I'd highly recommend a switchover.


Consider managing your python packages in dedicated virtualenvs. You can install any non-python dependencies (freetype which is required by matplotlib) using Homebrew, but you may ultimately have fewer headaches managing your python packages using pip within a virtualenv

If you are using the system python, you can install matplotlib like so. I'm assuming you want to place the virtualenv at top level of your home directory, so the first line in the listing below may be different if you want to create the virtualenv elsewhere and you'll need to adjust the remaining lines accordingly.

cd ~
sudo easy install pip
sudo pip install virtualenv
brew install pkg-config freetype
virtualenv matplotlibenvironment
source matplotlibenvironment/bin/activate

If /usr/local/include/freetype2 exists but /usr/local/include/freetype doesn't you will need to create a symlink from freetype2 to freetype to prevent errors when installing the matplotlib package

cd /usr/local/include
ln -s freetype2 freetype

Finally, you can install matplotlib using pip. pip install matplotlib

Any applications run from the previously created virtualenv will be able to import matplotlib.

Should you decide to use virtualenvs extensively, you may want to take a look at virtualenvwrapper which provide very nice functionality for managing multiple virtualenvs and switching between them.

Share:
12,461
WebOrCode
Author by

WebOrCode

http://buklijas.info/blog/

Updated on July 20, 2022

Comments

  • WebOrCode
    WebOrCode almost 2 years

    I am using Mac OSX 10.8, previously I used macports, but I switched to brew.

    Snows-MacBook-Pro:~ Mac$ brew search matplotlib
    samueljohn/python/matplotlib
    
    Snows-MacBook-Pro:~ Mac$ pip search matplotlib
    matplotlib                - Python plotting package
    

    So my question is easy. Should I use brew or pip for installing matplotlib ? Is there any difference and what ?

    My goal is to have pandas, ipythone notebook and simpleCV up and running.

  • WebOrCode
    WebOrCode almost 11 years
    I have already started with brew, so I will try to finish with it also . This Anaconda look promising. On windows I use Active Python and was happy with it. What is your opinion on Enthought and Pythonxy ?
  • Mike Müller
    Mike Müller almost 11 years
    EPD and Python(x,y) (Windows only as far as I know) work similarly well. No gigantic differences. Some tools for updating and such are more polished with EPD and Anaconda.
  • WebOrCode
    WebOrCode almost 11 years
    Quick answer is use brew. Thank you on your elaborate explanation it did clarify some thing for me.
  • WebOrCode
    WebOrCode almost 11 years
    I did, in the end, try Anaconda but with no success. It support pandas out of the box, but do not support simpleCV.
  • Bruno Feroleto
    Bruno Feroleto almost 11 years
    Thanks. Yeah, I would really recommend sticking with whatever package manager you use. (I reformatted the text so as to make the conclusion and the points stick out better.)
  • krumpelstiltskin
    krumpelstiltskin about 6 years
    Something seems to have changed... there is no longer a matplotlib formula in homebrew: github.com/Homebrew/homebrew-core/issues/22710