I\'ve installed Anaconda with the pkg installer:
Python 2.7.10 |Continuum Analytics, Inc.| (default, May 28 2015, 17:04:42) [GCC 4.2.1 (Apple Inc. build 557
If the problem is only matplotlib, is worth try to change the backend:
import matplotlib matplotlib.use('TkAgg') import matplotlib.pyplot as plt plt.plot([1, 2, 3], [4, 5, 6]) plt.show()
If it works you can change the backend permanently from the matplotlibrc file.