Python:我尝试使用表格:ModuleNotFoundError:没有名为“表格”的模块

时间:2018-12-12 11:03:13

标签: python module tabula

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

import tabula

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

ModuleNotFoundError: No module named 'tabula'

有什么想法吗?

3 个答案:

答案 0 :(得分:0)

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

pip install tabula-py

编辑:

对于Windows 10,请检查this documentation的“获取可工作的表格(Windows 10)”部分。

答案 1 :(得分:0)

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

答案 2 :(得分:-1)

这行代码对我有用:

conda install -c conda-forge tabula-py