所以我复制了给定here的示例,当我运行它时,我得到:
Traceback (most recent call last):
File "C:\Users\User\Documents\Project work\pdf.py", line 9, in <module>
with PdfPages('multipage_pdf.pdf') as pdf:
AttributeError: __exit__
那么我从哪里开始呢? 感谢
答案 0 :(得分:3)
PdfPages
仅在版本1.3.1中成为上下文管理器。请参阅chagelog。
请特别注意以下几行:
添加了用于创建多页pdf的上下文管理器(请参阅
matplotlib.backends.backend_pdf.PdfPages
)。
答案 1 :(得分:0)
除了接受的答案,我必须这样做:
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
from matplotlib.backends.backend_pdf import PdfPages
并且还避免使用调用显示的plt.figure()
。