0

我需要安装 pytorch==0.3(我正在使用 conda),但是当我运行命令行时,conda 说所需的包不可用。有没有办法安装它(可能不使用ubuntu)?

4

2 回答 2

2

peterjc123 在此处发布了 windows 版本:https ://anaconda.org/peterjc123/pytorch

于 2019-05-12T07:27:18.240 回答
1

windows 上最早的可用版本是 0.4.0 在 conda 上搜索可用版本时可以看到。

$conda search pytorch-cpu -c pytorch
Loading channels: done
# Name                  Version           Build  Channel
pytorch-cpu               0.4.0 py35_cpuhe774522_1  pytorch
pytorch-cpu               0.4.0 py36_cpuhe774522_1  pytorch
pytorch-cpu               0.4.1 py35_cpuhe774522_1  pytorch
pytorch-cpu               0.4.1 py36_cpuhe774522_1  pytorch
pytorch-cpu               0.4.1 py37_cpuhe774522_1  pytorch
pytorch-cpu               1.0.0     py3.5_cpu_1  pytorch
pytorch-cpu               1.0.0     py3.6_cpu_1  pytorch
pytorch-cpu               1.0.0     py3.7_cpu_1  pytorch
pytorch-cpu               1.0.1     py3.5_cpu_1  pytorch
pytorch-cpu               1.0.1   py3.6.7_cpu_1  pytorch
pytorch-cpu               1.0.1     py3.6_cpu_1  pytorch
pytorch-cpu               1.0.1   py3.7.1_cpu_1  pytorch
pytorch-cpu               1.0.1     py3.7_cpu_1  pytorch
pytorch-cpu               1.1.0     py3.5_cpu_1  pytorch
pytorch-cpu               1.1.0     py3.6_cpu_1  pytorch
pytorch-cpu               1.1.0     py3.7_cpu_1  pytorch

并且在 0.4.0 版本的发布页面上https://github.com/pytorch/pytorch/releases/tag/v0.4.0

如果你想使用 0.3.0 版本,我建议你使用 linux 或 mac 操作系统。

于 2019-05-11T20:22:08.323 回答