这是我尝试导入 camelot 的代码:import camelot as cl这是回应:ModuleNotFoundError Traceback (most recent call last)<ipython-input-6-360275993d18> in <module>----> 1 import camelot as cl 2 tables = cl.read_pdf('C:\\2019.pdf', pages='47', flavor='stream') 3 tables[0].plot('text')ModuleNotFoundError: No module named 'camelot'这是我检查 pip 列表时发生的情况。Camelot 已经安装:Package Version---------------- --------camelot-py 0.8.0chardet 3.0.4click 7.1.2Django 2.2.12et-xmlfile 1.0.1jdcal 1.4.1numpy 1.18.5opencv-python 4.2.0.34openpyxl 3.0.3pandas 1.0.4pdfminer.six 20200517pip 20.1.1pycryptodome 3.9.7PyPDF2 1.26.0python-dateutil 2.8.1pytz 2019.3setuptools 41.2.0six 1.15.0sortedcontainers 2.2.2sqlparse 0.3.1
1 回答
达令说
TA贡献1821条经验 获得超6个赞
试试这个,但不要使用 2.7,而是使用你拥有的 python 版本。
python2.7 -m pip install camelot-py
编辑:
我的研究告诉我,camelot 和 camelot-py 是“Python 包索引中的独立包”。请尝试这些并告诉我会发生什么。
$ pip uninstall camelot
$ pip uninstall camelot-py
$ pip install camelot-py[cv]
添加回答
举报
0/150
提交
取消