我在Pycharm中的matplotlib有问题,我的代码是:
import matplotlib.pyplot as plt
import numpy as np
T = np.linspace(10,100,10)
es = 611*np.exp(17.27*T/(237.3+T))
plt.plot(T,es)
plt.xlabel('T (degree Celcius)')
plt.ylabel('es (pa)')
plt.show()
在我运行这段代码后,Pycharm显示了此错误: enter link description here
我应该怎么做才能解决它?