Skip to content
Advertisement

Matplotlib error: libfreetype.6.dylib

I’m trying to run the following python script (I’m using Vim):

JavaScript

When I do, I get the following:

JavaScript

I tried reinstalling brew, reinstalling freetype, matplotlib, and numpy in brew, and I uninstalled MacPorts with no change in the error. Suggestions?

EDIT: After uninstalling MacPorts and then doing another reinstall of brew, I now get this error instead.

Fatal Python error: PyThreadState_Get: no current thread Command terminated

The error only appears when I import matplotlib, so I’m guessing the issue is with matplotlib. I will try to reinstall it with brew.

EDIT2: I’ve been trying from this page to no avail, but I think my error is probably related to that one.

Advertisement

Answer

Fixed it… sort of.

Fixed it.

I uninstalled with brew uninstall matplotlib and then installed with pip install matplotlib. The pip version now works. although I think something is wrong with my code because I don’t get an image output.

I uninstalled all of my installations of python and then installed ipython, which worked fine. Also, I was forgetting to add plt.show(); after my imshow(); commands… :-( …. but at least someone else has made this mistake before me …

Refer to this page for very thorough help with any matplotlib imshow issues:

matplotlib does not show my drawings although I call pyplot.show()

Advertisement