1

这是我的代码:

from tabula import wrapper
df = wrapper.read_pdf('singapore.pdf')

但它给出了以下错误:

ImportError:无法导入名称“包装器”

我在 ubuntu 上尝试过,它在那里工作正常,但在 Windows 上我无法使用此代码,因为它总是给出上述错误。我使用以下命令安装了 tabula:

pip3 安装 tabula-py

4

1 回答 1

1

这是我解决它的方法,您需要将java路径添加到环境变量。更多详情可在这找到:

https://tabula-py.readthedocs.io/en/latest/getting_started.html#get-tabula-py-working-windows-10

于 2020-02-06T08:49:18.217 回答