matplotlib is currently using agg which is a non-gui backend so cannot show the figure code example
Example: matplotlib is currently using agg
from matplotlib import pyplot
pyplot.plot(your_plot)
pyplot.savefig("output.png")
from matplotlib import pyplot
pyplot.plot(your_plot)
pyplot.savefig("output.png")