运行以下代码时:
import matplotlib.pyplot as plt
plt.rcParams['text.usetex'] = True
plt.plot(range(10))
plt.savefig("plot.pdf")
我得到了很长的错误,最后说FileNotFoundError: [Errno 2] No such file or directory: ''
。该代码前段时间运行良好。但是,在使用backend="pgf"
后端时,会根据需要保存图形。这是什么原因?
我之前清除了matplotlib
配置和缓存。
>>>!python -V
Python 3.9.10
>>>print(matplotlib.__version__)
3.5.1