ERROR: Could not find a version that satisfies the requirement torch
时间: 2023-11-11 07:03:01 浏览: 213
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示表明你的环境中没有安装 PyTorch 库。你需要先安装 PyTorch 库才能使用它。你可以通过以下命令安装 PyTorch:
```
pip install torch
```
如果你使用的是 GPU 版本的 PyTorch,可以使用以下命令安装:
```
pip install torch torchvision torchaudio -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
请注意,这需要你的计算机上已经安装了 CUDA 和 cuDNN。
阅读全文