Could not find a version that satisfies the requirement torch(from versions:none)
时间: 2023-11-11 15:07:29 浏览: 141
这个错误通常是由于 PyTorch 版本不兼容导致的。请检查您的 PyTorch 版本是否与您的代码和其他依赖项兼容。您可以尝试使用以下命令安装特定版本的 PyTorch:
```
pip install torch==1.7.1+cpu torchvision==0.8.2+cpu torchaudio==0.7.2 -f https://download.pytorch.org/whl/torch_stable.html
```
请注意,这是安装 CPU 版本的 PyTorch。如果您需要 GPU 版本,请将 `+cpu` 替换为 `+cu101`(CUDA 10.1)或 `+cu102`(CUDA 10.2),具体取决于您的 CUDA 版本。
阅读全文