I tried a simple plot in pythonanywhere, here the code:
from matplotlib import * import matplotlib.pyplot as plt fig = plt.figure() plt.plot([1, 2, 3, 4]) plt.xlabel("t") plt.ylabel("y") plt.show()
I get no error message, but also no plot :( Any idea?