I am running OS X 10.11.3, and I have installed Anaconda3-2.5.0-MacOSX-x86_64.pkg which includes Matplotlib 1.5.1. When I try to import Matplotlib in Jupyter with the follo
You can find this out with get_cachedir(). For example in python 2:
get_cachedir()
import matplotlib as mpl print mpl.get_cachedir()
and in python 3:
import matplotlib as mpl print(mpl.get_cachedir())
See here for more information