@@ -17,6 +17,82 @@ your convenience.
17
17
18
18
## Commands for Versions >= 1.0.0
19
19
20
+ ### v2.6.0
21
+
22
+ #### Wheel
23
+
24
+ ##### OSX
25
+
26
+ ```
27
+ pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0
28
+ ```
29
+
30
+ ##### Linux and Windows
31
+
32
+ ```
33
+ # ROCM 6.1 (Linux only)
34
+ pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/rocm6.1
35
+ # ROCM 6.2.4 (Linux only)
36
+ pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/rocm6.2.4
37
+ # CUDA 11.8
38
+ pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/cu118
39
+ # CUDA 12.4
40
+ pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/cu124
41
+ # CUDA 12.6
42
+ pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/cu126
43
+ # CPU only
44
+ pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/cpu
45
+ ```
46
+
47
+ ### v2.5.0
48
+
49
+ #### Conda
50
+
51
+ ##### OSX
52
+
53
+ ```
54
+ # conda
55
+ conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 -c pytorch
56
+ ```
57
+
58
+ ##### Linux and Windows
59
+
60
+ ```
61
+ # CUDA 11.8
62
+ conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 pytorch-cuda=11.8 -c pytorch -c nvidia
63
+ # CUDA 12.1
64
+ conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 pytorch-cuda=12.1 -c pytorch -c nvidia
65
+ # CUDA 12.4
66
+ conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 pytorch-cuda=12.4 -c pytorch -c nvidia
67
+ # CPU Only
68
+ conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 cpuonly -c pytorch
69
+ ```
70
+
71
+ #### Wheel
72
+
73
+ ##### OSX
74
+
75
+ ```
76
+ pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0
77
+ ```
78
+
79
+ ##### Linux and Windows
80
+
81
+ ```
82
+ # ROCM 6.1 (Linux only)
83
+ pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/rocm6.1
84
+ # ROCM 6.2 (Linux only)
85
+ pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/rocm6.2
86
+ # CUDA 11.8
87
+ pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cu118
88
+ # CUDA 12.1
89
+ pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cu121
90
+ # CUDA 12.4
91
+ pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cu124
92
+ # CPU only
93
+ pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cpu
94
+ ```
95
+
20
96
### v2.5.1
21
97
22
98
#### Conda
0 commit comments