Skip to content

Commit 476127f

Browse files
authored
Merge pull request #1060 from atalman/surface_rocm_stable
Update previous versions installation instructions
2 parents 2a2c161 + 7751bbe commit 476127f

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

_get_started/previous-versions.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,54 @@ your convenience.
1717

1818
## Commands for Versions >= 1.0.0
1919

20+
### v1.11.0
21+
22+
#### Conda
23+
24+
##### OSX
25+
26+
```
27+
# conda
28+
conda install pytorch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0 -c pytorch
29+
```
30+
31+
##### Linux and Windows
32+
33+
```
34+
# CUDA 10.2
35+
conda install pytorch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0 cudatoolkit=10.2 -c pytorch
36+
37+
# CUDA 11.3
38+
conda install pytorch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0 cudatoolkit=11.3 -c pytorch
39+
40+
# CPU Only
41+
conda install pytorch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0 cpuonly -c pytorch
42+
```
43+
44+
#### Wheel
45+
46+
##### OSX
47+
48+
```
49+
pip install torch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0
50+
```
51+
52+
##### Linux and Windows
53+
54+
```
55+
# ROCM 4.5.2 (Linux only)
56+
pip install torch==1.11.0+rocm4.5.2 torchvision==0.12.0+rocm4.5.2 torchaudio==0.11.0 --extra-index-url https://download.pytorch.org/whl/rocm4.5.2
57+
58+
# CUDA 11.3
59+
pip install torch==1.11.0+cu113 torchvision==0.12.0+cu113 torchaudio==0.11.0 --extra-index-url https://download.pytorch.org/whl/cu113
60+
61+
# CUDA 10.2
62+
pip install torch==1.11.0+cu102 torchvision==0.12.0+cu102 torchaudio==0.11.0 --extra-index-url https://download.pytorch.org/whl/cu102
63+
64+
# CPU only
65+
pip install torch==1.11.0+cpu torchvision==0.12.0+cpu torchaudio==0.11.0 --extra-index-url https://download.pytorch.org/whl/cpu
66+
```
67+
2068
### v1.10.1
2169

2270
#### Conda

0 commit comments

Comments
 (0)