Traceback (most recent call last): File "C:\Users\rice\Desktop\新建文件夹\pdf.py", line 20, in <module> pdf_reader = PyPDF2.PdfFileReader(pdf_file) File "C:\Users\rice\AppData\Local\Programs\Python\Python311\Lib\site-packages\PyPDF2\_reader.py", line 1974, in __init__ deprecation_with_replacement("PdfFileReader", "PdfReader", "3.0.0") File "C:\Users\rice\AppData\Local\Programs\Python\Python311\Lib\site-packages\PyPDF2\_utils.py", line 369, in deprecation_with_replacement deprecation(DEPR_MSG_HAPPENED.format(old_name, removed_in, new_name)) File "C:\Users\rice\AppData\Local\Programs\Python\Python311\Lib\site-packages\PyPDF2\_utils.py", line 351, in deprecation raise DeprecationError(msg) PyPDF2.errors.DeprecationError: PdfFileReader is deprecated and was removed in PyPDF2 3.0.0. Use PdfReader instead.
时间: 2023-06-30 17:09:16 浏览: 415
linux 下 pip3 报错“ File “/usr/bin/pip3”, line 9, in from pip import mainImportError: canno”处理
5星 · 资源好评率100%
这个错误提示是因为你使用了 PyPDF2 的一个已经被弃用的方法。建议你使用更新的 PyPDF4 库来替代 PyPDF2,并且避免使用被弃用的方法。如果你想继续使用 PyPDF2 库,可以使用 PdfReader 替代 PdfFileReader。例如,你可以将这行代码:
```python
pdf_reader = PyPDF2.PdfFileReader(pdf_file)
```
修改为:
```python
pdf_reader = PyPDF2.PdfReader(pdf_file)
```
这样就可以避免这个错误了。
阅读全文