ERROR: Could not find a version that satisfies the requirement pytest (from versions: none) ERROR: No matching distribution found for pytest
时间: 2023-11-11 18:04:44 浏览: 156
Could not find a version that satisfies the requirement PIL (from versions: ) No matching distribu
这个错误提示是因为你尝试安装 pytest,但是没有找到匹配的版本。可能是因为你的 Python 环境没有安装 pip 或者 pip 版本过低导致的。你可以尝试更新 pip,然后再安装 pytest。可以使用以下命令更新 pip:
```
pip install --upgrade pip
```
然后再尝试安装 pytest:
```
pip install pytest
```
如果还是无法安装,可以尝试使用 conda 安装 pytest。
阅读全文