matplotlib pdf savefig提前退出

时间:2014-02-21 11:59:14

标签: python matplotlib

所以我复制了给定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__

那么我从哪里开始呢? 感谢

2 个答案:

答案 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()