- _tkinter.TclError: couldn't connect to display "localhost:21.0"
解决方案:
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
- ValueError: Format 'jpg' is not supported (supported formats: eps, pdf, pgf, png, ps, raw, rgba, svg, svgz)
这是savefig报的错,虽然表面上只是单纯的格式不支持,但是这段代码我在本地运行是可以的,当时报了另一个错:
integer argument expected got float
解决方案看这里:
matplotlib使用savefig遇到错误 integer argument expected got float
在服务器也用pip install --upgrade pillow
更新了一下,问题解决。