运行深度学习出现Fail to create pixmap with Tk_GetPixmap in TkImgPhotoInstanceSetSize

我先试了在绘图代码后面加上 plt.close(‘all’),不行,没有解决。
然后重新安装了matplotlib,原为matplotlib3.5.1,我重新安装了3.4版本的。
卸载指令:pip uninstall matplotlib
安装指令:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ matplotlib==3.4
于是这个错误解决了,但是报了新的错,Fail to allocate bitmap,在开头加上
import matplotlib
matplotlib.use(‘Agg’)
就解决了。

你可能感兴趣的:(深度学习,pytorch,python)