return self.view_functions[rule.endpoint](**req.view_args) File "K:\AI\DesktopTranslator\server.py", line 144, in translate_file result = translator_instance.translate_file(output_file) File "K:\AI\DesktopTranslator\translator_dgui.py", line 336, in translate_file page = pdf_writer.addPage(PyPDF2.pdf.PageObject.createTextPage(result['translated_text'])) AttributeError: module 'PyPDF2' has no attribute 'pdf'
时间: 2024-03-20 11:40:34 浏览: 102
b.rar_FE_endpoint_FE_feature.h_语音 提取_语音特征_语音特征提取
这个错误意味着您正在使用的PyPDF2版本没有pdf属性。导致这种情况的原因可能是您的PyPDF2版本过旧或过新。
您可以尝试使用以下命令升级PyPDF2模块:
```
pip install --upgrade PyPDF2
```
如果仍然出现该错误,则可能需要使用其他PDF库或使用其他版本的PyPDF2。您可以尝试使用pdfminer、pdfquery或PyMuPDF等其他PDF库。如果您想继续使用PyPDF2,请尝试使用其他版本。
阅读全文