File tree Expand file tree Collapse file tree 1 file changed +48
-1
lines changed Expand file tree Collapse file tree 1 file changed +48
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,53 @@ your convenience.
1717
1818## Commands for Versions >= 1.0.0
1919
20+ ### v1.12.1
21+
22+ #### Conda
23+
24+ ##### OSX
25+
26+ ```
27+ # conda
28+ conda install pytorch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1 -c pytorch
29+ ```
30+
31+ ##### Linux and Windows
32+
33+ ```
34+ # CUDA 10.2
35+ conda install pytorch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1 cudatoolkit=10.2 -c pytorch
36+ # CUDA 11.3
37+ conda install pytorch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1 cudatoolkit=11.3 -c pytorch
38+ # CUDA 11.6
39+ conda install pytorch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1 cudatoolkit=11.6 -c pytorch -c conda-forge
40+ # CPU Only
41+ conda install pytorch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1 cpuonly -c pytorch
42+ ```
43+
44+ #### Wheel
45+
46+ ##### OSX
47+
48+ ```
49+ pip install torch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1
50+ ```
51+
52+ ##### Linux and Windows
53+
54+ ```
55+ # ROCM 5.1.1 (Linux only)
56+ pip install torch==1.12.1+rocm5.1.1 torchvision==0.13.1+rocm5.1.1 torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/whl/rocm5.1.1
57+ # CUDA 11.6
58+ pip install torch==1.12.1+cu116 torchvision==0.13.1+cu116 torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/whl/cu116
59+ # CUDA 11.3
60+ pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/whl/cu113
61+ # CUDA 10.2
62+ pip install torch==1.12.1+cu102 torchvision==0.13.1+cu102 torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/whl/cu102
63+ # CPU only
64+ pip install torch==1.12.1+cpu torchvision==0.13.1+cpu torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/whl/cpu
65+ ```
66+
2067### v1.12.0
2168
2269#### Conda
@@ -52,7 +99,7 @@ pip install torch==1.12.0 torchvision==0.13.0 torchaudio==0.12.0
5299##### Linux and Windows
53100
54101```
55- # ROCM 5.1.1 (Linux only
102+ # ROCM 5.1.1 (Linux only)
56103pip install torch==1.12.0+rocm5.1.1 torchvision==0.13.0+rocm5.1.1 torchaudio==0.12.0 --extra-index-url https://download.pytorch.org/whl/rocm5.1.1
57104# CUDA 11.6
58105pip install torch==1.12.0+cu116 torchvision==0.13.0+cu116 torchaudio==0.12.0 --extra-index-url https://download.pytorch.org/whl/cu116
You can’t perform that action at this time.
0 commit comments