Matplotlib kills kernel on Jupyter

Viewed 1699

Screenshot of error

Hi, I'm taking a machine learning course on udemy and im trying to run the following:

%matplotlib inline
import matplotlib.pyplot as plt

The issue is that once I run this, it kills the kernel and the message shown in the picture is the only thing that comes out.

I'm new to this and I just want to move forward with the course but this is holding me back.

TIA

1 Answers

The problem was solved for me by running conda install freetype=2.10.4, as reported on this GitHub issue

Related