Is there a way to disable/hide matplotlib Toolbar that shows up on the bottom?
I'd tried something like this:
import matplotlib as mpl
mpl.rcParams['toolbar'] = 'None'
but unfortunately that didn't work.
Make sure to call mpl.rcParams['toolbar'] = 'None'
before you instantiate any figures.