jupyter ModuleNotFoundError: No module named matplotlib

In a Notebook’s cell type and execute the code:

import sys  
!{sys.executable} -m pip install --user matplotlib

and reload the kernel

(src: http://jakevdp.github.io/blog/2017/12/05/installing-python-packages-from-jupyter/ )

Leave a Comment