这个是为什么:Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library?
时间: 2024-05-14 15:16:02 浏览: 79
ERROR: Cause: unable to find valid certification path to requested target终极解决方法
这是因为在你的代码中缺少lxml解析器库。你需要安装lxml库来解决此问题。你可以通过以下命令在终端中安装lxml库:
```
pip install lxml
```
如果你使用的是conda环境,则可以使用以下命令:
```
conda install lxml
```
安装完成后,重新运行你的代码即可。
阅读全文