bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library?
时间: 2024-02-20 09:06:39 浏览: 78
ERROR: Cause: unable to find valid certification path to requested target终极解决方法
这个错误提示是由于您使用了BeautifulSoup库,但是您没有安装lxml解析器库所致。您需要通过以下命令安装lxml库:
```
pip install lxml
```
如果您使用的是conda环境,则可以使用以下命令安装:
```
conda install lxml
```
安装完成后,您的代码应该可以正常运行了。
阅读全文