当前位置: 首页 > 工具软件 > html5lib > 使用案例 >

解决read_html的“ImportError: html5lib not found, please install it”错误

云瑞
2023-12-01

执行
import pandas as pd
df=pd.read_html(“http://data.stcn.com/2019/0304/14899644.shtml”)
出现“ImportError: html5lib not found, please install it”错误
使用:
1.df = pd.read_html(“http://data.stcn.com/2019/0304/14899644.shtml”,flavor =‘lxml’)
2.pip install html5lib
都不能解决问题。
这可能是你正在使用python-3.6。python-3.x的软件包管理器是pip3。因此,应该使用以下命令进行安装:pip3 install lxml
这样可以就不再有错误出现,也可以正常执行了。

 类似资料: