Could not find a version that satisfies the requirement HTMLSession (from versions: none)
时间: 2023-11-11 12:03:56 浏览: 124
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误通常是由于没有安装所需的依赖项导致的。HTMLSession是一个第三方库,它依赖于requests和beautifulsoup4库。您需要确保这些库已经安装。您可以使用以下命令来安装它们:
```
pip install requests beautifulsoup4
```
如果您已经安装了这些库,那么可能是版本不兼容导致的。您可以尝试升级这些库的版本,或者降低HTMLSession的版本。
阅读全文