我尝试将模块“tabula”用于python,但显然我已经安装失败了。我只是使用了代码
import tabula
但是,我收到以下错误消息:
ModuleNotFoundError: No module named 'tabula'
有什么想法吗?
您需要事先安装它,在控制台中启动此命令:
pip install tabula-py
编辑:
对于 WINdows 10,请查看本文档的“Get tabula-py working (Windows 10)”部分。
我遇到了同样的问题,但我通过运行“ipython3”而不是“ipython”解决了这个问题。您必须确保使用 python3 运行脚本
这行代码对我有用:
conda install -c conda-forge tabula-py