遵循此https://pytorch.org/get-started/previous-versions/#via-pip
pip install torch==0.2.0_4 -f https://download.pytorch.org/whl/cpu/stable
Collecting torch==0.2.0_4
Could not find a version that satisfies the requirement torch==0.2.0_4 (from versions: 0.1.2, 0.1.2.post1, 0.3.1, 0.4.0, 0.4.1, 1.0.0, 1.0.1, 1.0.1.post2, 1.1.0)
No matching distribution found for torch==0.2.0_4
如何安装旧版本的pytorch?
答案 0 :(得分:2)
pip install torch==
Collecting torch==
错误:找不到满足torch ==要求的版本(来自版本:0.1.2、0.1.2.post1、0.4.1、1.0.0、1.0.1、1.0.1.post2、1.1 .0) 错误:找不到与Torch ==
匹配的分布
这意味着0.2版不可用
您可以下载特定版本(wheels可用)并使用pip install
进行安装
答案 1 :(得分:1)
这对我有用:
conda install pytorch==1.7.1 torchvision cudatoolkit=10.2 -c pytorch
注意我也指定了 cuda 版本。
请注意,在 pytorch 论坛上也有人问过这个问题:https://discuss.pytorch.org/t/how-to-switch-to-older-version-of-pytorch/19656/21