ERROR: Could not find a version that satisfies the requirement lxml (from versions: none) ERROR: No matching distribution found for lxml
时间: 2023-11-11 18:03:00 浏览: 146
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误通常是由于缺少lxml库导致的。您可以尝试使用以下命令安装lxml库:
```
pip install lxml
```
如果您使用的是conda环境,则可以使用以下命令安装:
```
conda install -c anaconda lxml
```
如果您已经安装了lxml库,但仍然遇到此错误,请尝试更新lxml库:
```
pip install --upgrade lxml
```
阅读全文