本文介绍了Python:我尝试使用 tabula: ModuleNotFoundError: No module named 'tabula'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我尝试将模块tabula"用于 python,但显然我已经无法安装.我只是用了代码
I tried to use the module "tabula" for python, but apparently I already fail at installing. I simply used the code
import tabula
但是,我收到以下错误消息:
However, I get the following error message:
ModuleNotFoundError: No module named 'tabula'
有什么想法吗?
推荐答案
您需要事先安装它,在控制台中启动此命令:
You need to install it priorly, lauching this command in a console:
pip install tabula-py
对于 WINdows 10,请检查 this 的Get tabula-py working (Windows 10)"部分文档.
For WIndows 10, check the "Get tabula-py working (Windows 10)" part of this documentation.
这篇关于Python:我尝试使用 tabula: ModuleNotFoundError: No module named 'tabula'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!