2

我尝试将模块“tabula”用于python,但显然我已经安装失败了。我只是使用了代码

import tabula

但是,我收到以下错误消息:

ModuleNotFoundError: No module named 'tabula'

有什么想法吗?

4

3 回答 3

2

您需要事先安装它,在控制台中启动此命令:

pip install tabula-py

编辑:

对于 WINdows 10,请查看本文档的“Get tabula-py working (Windows 10)”部分。

于 2018-12-12T11:11:14.903 回答
0

我遇到了同样的问题,但我通过运行“ipython3”而不是“ipython”解决了这个问题。您必须确保使用 python3 运行脚本

于 2019-06-06T06:59:16.307 回答
-1

这行代码对我有用:

conda install -c conda-forge tabula-py
于 2020-07-21T07:32:26.677 回答