File tree Expand file tree Collapse file tree 3 files changed +307
-3
lines changed Expand file tree Collapse file tree 3 files changed +307
-3
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,55 @@ your convenience.
1717
1818## Commands for Versions >= 1.0.0
1919
20+ ### v2.5.0
21+
22+ #### Conda
23+
24+ ##### OSX
25+
26+ ```
27+ # conda
28+ conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 -c pytorch
29+ ```
30+
31+ ##### Linux and Windows
32+
33+ ```
34+ # CUDA 11.8
35+ conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 pytorch-cuda=11.8 -c pytorch -c nvidia
36+ # CUDA 12.1
37+ conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 pytorch-cuda=12.1 -c pytorch -c nvidia
38+ # CUDA 12.4
39+ conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 pytorch-cuda=12.4 -c pytorch -c nvidia
40+ # CPU Only
41+ conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 cpuonly -c pytorch
42+ ```
43+
44+ #### Wheel
45+
46+ ##### OSX
47+
48+ ```
49+ pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0
50+ ```
51+
52+ ##### Linux and Windows
53+
54+ ```
55+ # ROCM 6.1 (Linux only)
56+ pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/rocm6.1
57+ # ROCM 6.2 (Linux only)
58+ pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/rocm6.2
59+ # CUDA 11.8
60+ pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cu118
61+ # CUDA 12.1
62+ pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cu121
63+ # CUDA 12.4
64+ pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cu124
65+ # CPU only
66+ pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cpu
67+ ```
68+
2069### v2.4.1
2170#### Conda
2271##### OSX
You can’t perform that action at this time.
0 commit comments