Could not find a version that satisfies the requirement torch==1.9.1 (from torchvision) (from versions: 2.0.0, 2.0.1)
时间: 2023-11-05 19:56:06 浏览: 154
这个错误提示是因为你的系统中没有找到满足要求的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。
相关问题
Could not find a version that satisfies the requirement torch==1.8.0 (from torchvision) (from versions: 2.0.0, 2.0.1)
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版本进行安装。
Could not find a version that satisfies the requirement torch==1.4.0 (from versions: 2.0.0, 2.0.1)
根据引用和引用的信息,可以知道在Python 3.7的虚拟环境中安装torch的1.3.0版本是成功的。但是,根据引用所提供的信息,找不到满足要求的torch==1.4.0的版本。根据这些信息,我们可以得出结论,目前没有torch的1.4.0版本可用。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [ERROR: Could not find a version that satisfies the requirement torch==1.3.0解决方案](https://blog.csdn.net/dream6985/article/details/127305278)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文