我尝试使用python的模块"tabula“,但是显然我已经安装失败了。我只是简单地使用了代码
import tabula但是,我得到以下错误消息:
ModuleNotFoundError: No module named 'tabula'你知道这是怎么回事吗?
发布于 2018-12-12 19:11:15
您需要先安装它,并在控制台中加载此命令:
pip install tabula-py编辑:
对于Windows10,请检查this documentation的"Get tabula-py working (Windows10)“部分。
发布于 2019-06-06 14:59:16
我得到了同样的问题,但我通过运行'ipython3‘而不是'ipython’解决了它。您必须确保使用python3运行该脚本
发布于 2020-07-21 15:32:27
下面这行代码对我来说很管用:
conda install -c conda-forge tabula-pyhttps://stackoverflow.com/questions/53741605
复制相似问题