已解决(bs4解析HTML网页报错)bs4.FeatureNotFound: Couldn’t find a tree builder with the features you requested: html5Lib. Do you need to install a parser Library?
报错代码
粉丝群里面的一个小伙伴用bs4解析HTML网页的时候出现的问题:
报错信息:bs4.FeatureNotFound: Couldn’t find a tree builder with the features you requested: html5Lib. Do you need to install a parser Library?
报错翻译
报错信息翻译:
bs4.未找到特征 :找不到具有您请求的功能的树生成器:html5Lib。您需要安装解析器库吗?
报错原因
报错原因:虽然在程序中引入bs4类库,但是需要在ba4中安装html5Lib包
解决方法
方法1:换成'html.parser'
这个解析库运行代码:
方法2:安装html5Lib
解析库,运行原来代码即可
pip install html5Lib