ERROR: Could not find a version that satisfies the requirement torch (from -r requirements.txt (line 1)) (from versions: none)
时间: 2023-11-11 20:03:00 浏览: 203
requirements.txt
5星 · 资源好评率100%
这个错误通常是由于缺少 PyTorch 库导致的。请确保已经正确安装了 PyTorch 库,可以通过以下命令安装:
```
pip install torch
```
如果你使用的是 GPU 版本的 PyTorch,可以使用以下命令安装:
```
pip install torch torchvision torchaudio -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
阅读全文