Python表格-无法导入名称包装器

时间:2018-09-25 06:43:42

标签: python

从表格导入包装器时遇到问题

行抛出错误:

from tabula import wrapper

我正在使用Python 3.4

错误-“无法导入名称包装器”

1 个答案:

答案 0 :(得分:1)

我认为您正在使用 tabula python包装器。我认为您为表格安装了错误的pip软件包,这导致它找不到包装模块。 (也许pip install tabula

尝试:

pip install tabula-py 

或取决于您的点子配置:

pip3 install tabula-py

The link to the pip package.