我正在尝试使用 Tabula-py 阅读 pdf。我通过安装 tabula-pypip install tabula-py
我还安装了所需的依赖项
requests
pandas
pytest
flake8
我的代码目前如下:
import tabula
import pandas as pd
df = tabula.read_pdf("report.pdf", pages=2)
print(df)
我收到以下错误:
Traceback (most recent call last):
File "tabula_pdf_reader.py", line 1, in <module>
import tabula
ImportError: No module named tabula
我在这里缺少的任何输入?