我在尝试将 tabula 包导入 jupyter 笔记本时遇到了问题。我激活了我的 conda 虚拟环境,pip 安装了 tabula-py,然后运行pip freeze
. 它确认已安装 tabula-py。
certifi==2021.5.30
distro==1.6.0
et-xmlfile==1.1.0
greenlet==1.1.0
importlib-metadata==4.6.1
keyring==23.0.1
numpy==1.21.1
openpyxl==3.0.7
pandas==1.3.0
pyodbc==4.0.31
python-dateutil==2.8.2
pytz==2021.1
pywin32-ctypes==0.2.0
six==1.16.0
SQLAlchemy==1.4.21
tabula-py==2.3.0
wincertstore==0.2
XlsxWriter==1.4.4
zipp==3.5.0
当我的虚拟环境处于活动状态时,我测试了从命令行 ( import tabula
) 导入 tabula 包。一切正常!我跑出exit()
python 实例,然后跑出jupyter notebook
一个 jupyter notebook。(仍在我的虚拟环境中)
但是,在 jupyter 中,我的 import 语句不再起作用,即使我没有更改任何内容。我help('modules')
在 jupyter 中运行,现在我的包列表中不存在 tabula ????我不确定为什么它不起作用。我设置了 Java PATH,除了 jupyter notebook 外,它在任何地方都可以正常工作。