: Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library?
时间: 2024-05-07 18:18:40 浏览: 142
ERROR: Cause: unable to find valid certification path to requested target终极解决方法
这个错误通常是由于缺少 lxml 模块导致的。你需要使用 pip 或者其他包管理工具安装 lxml 模块。如果你使用的是 Anaconda,可以使用以下命令安装:
```
conda install lxml
```
如果你使用的是 pip,可以使用以下命令安装:
```
pip install lxml
```
安装完成后,重新运行你的程序即可。
阅读全文