Could not find a version that satisfies the requirement torch==1.8.0 (from torchvision) (from versions: 2.0.0, 2.0.1)
时间: 2023-11-05 07:56:05 浏览: 133
ERROR: Could not find a version that satisfies the requirement torch==1.8.0 (from torchvision) (from versions: 2.0.0, 2.0.1)
这个错误提示说明当前的torchvision版本无法满足对torch==1.8.0的要求。根据引用中提到的信息,你下载的torchvision版本是0.9.0,而不是1.8.0。可能是因为没有对应版本的torchvision可供下载。你可以尝试使用更高版本的torchvision与torch==1.8.0兼容,或者查找一个与你已安装的torch版本兼容的torchvision版本进行安装。
相关问题
ERROR: Could not find a version that satisfies the requirement torch==1.8.0 (from versions: 2.0.0, 2.0.1) ERROR: No matching distribution found for torch==1.8.0
这个错误通常表示您的 Python 环境中没有安装 PyTorch 1.8.0 版本。您可以尝试在终端中运行以下命令来安装 PyTorch 1.8.0:
```
pip install torch==1.8.0 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
请注意,这需要您的计算机支持 CUDA 11.1,如果不支持,可以更换下载链接中的 `cu111` 部分为您的 CUDA 版本号。如果您不知道自己的 CUDA 版本,可以在终端中运行 `nvcc --version` 来查看。
Could not find a version that satisfies the requirement torch==1.9.1 (from torchvision) (from versions: 2.0.0, 2.0.1)
这个错误提示是因为你的系统中没有找到满足要求的torch版本。根据引用的信息,torch有多个版本可供选择,但是你需要的版本可能并不在其中。根据引用的建议,你可以尝试使用指定版本的命令来安装torch和相应的依赖库。具体操作是使用以下命令进行安装:
pip install torch==1.10.2 cu113 torchvision torchaudio -f https://download.pytorch.org/whl/torch_stable.html
如果上述命令仍然无法解决问题,你可以尝试引用中提供的另一种解决方案:
pip install --user torch==1.3.0 -f https://download.pytorch.org/whl/torch_stable.html
这个命令将安装torch的1.3.0版本,并指定下载地址为https://download.pytorch.org/whl/torch_stable.html。
阅读全文