Skip to content

Commit 55063dc

Browse files
committed
Add 1.6.0 to previous versions list
1 parent e69fa62 commit 55063dc

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

_get_started/previous-versions.md

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

1818
## Commands for Versions >= 1.0.0
1919

20+
### v1.6.0
21+
22+
#### Conda
23+
24+
##### OSX
25+
26+
```
27+
# conda
28+
conda install pytorch==1.6.0 torchvision==0.7.0 -c pytorch
29+
```
30+
31+
##### Linux and Windows
32+
33+
```
34+
# CUDA 9.2
35+
conda install pytorch==1.6.0 torchvision==0.7.0 cudatoolkit=9.2 -c pytorch
36+
37+
# CUDA 10.1
38+
conda install pytorch==1.6.0 torchvision==0.7.0 cudatoolkit=10.1 -c pytorch
39+
40+
# CUDA 10.2
41+
conda install pytorch==1.6.0 torchvision==0.7.0 cudatoolkit=10.2 -c pytorch
42+
43+
# CPU Only
44+
conda install pytorch==1.6.0 torchvision==0.7.0 cpuonly -c pytorch
45+
```
46+
47+
#### Wheel
48+
49+
##### OSX
50+
51+
```
52+
pip install torch==1.6.0 torchvision==0.7.0
53+
```
54+
55+
##### Linux and Windows
56+
57+
```
58+
# CUDA 10.2
59+
pip install torch==1.6.0 torchvision==0.7.0
60+
61+
# CUDA 10.1
62+
pip install torch==1.6.0+cu101 torchvision==0.7.0+cu101 -f https://download.pytorch.org/whl/torch_stable.html
63+
64+
# CUDA 9.2
65+
pip install torch==1.6.0+cu92 torchvision==0.7.0+cu92 -f https://download.pytorch.org/whl/torch_stable.html
66+
67+
# CPU only
68+
pip install torch==1.6.0+cpu torchvision==0.7.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
69+
```
70+
2071
### v1.5.1
2172

2273
#### Conda

0 commit comments

Comments
 (0)