Skip to content

Commit 2153a09

Browse files
authored
Add 1.4.0 and 1.5.0 to previous versions (pytorch#439)
1 parent ebc5c35 commit 2153a09

File tree

1 file changed

+97
-1
lines changed

1 file changed

+97
-1
lines changed

_get_started/previous-versions.md

Lines changed: 97 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,102 @@ your convenience.
1717

1818
## Commands for Versions >= 1.0.0
1919

20+
### v1.5.0
21+
22+
#### Conda
23+
24+
##### OSX
25+
26+
```
27+
# conda
28+
conda install pytorch==1.5.0 torchvision==0.6.0 -c pytorch
29+
```
30+
31+
##### Linux and Windows
32+
33+
```
34+
# CUDA 9.2
35+
conda install pytorch==1.5.0 torchvision==0.6.0 cudatoolkit=9.2 -c pytorch
36+
37+
# CUDA 10.1
38+
conda install pytorch==1.5.0 torchvision==0.6.0 cudatoolkit=10.1 -c pytorch
39+
40+
# CUDA 10.2
41+
conda install pytorch==1.5.0 torchvision==0.6.0 cudatoolkit=10.2 -c pytorch
42+
43+
# CPU Only
44+
conda install pytorch==1.5.0 torchvision==0.6.0 cpuonly -c pytorch
45+
```
46+
47+
#### Wheel
48+
49+
##### OSX
50+
51+
```
52+
pip install torch==1.5.0 torchvision==0.6.0
53+
```
54+
55+
##### Linux and Windows
56+
57+
```
58+
# CUDA 10.2
59+
pip install torch==1.5.0 torchvision==0.6.0 -f https://download.pytorch.org/whl/torch_stable.html
60+
61+
# CUDA 10.1
62+
pip install torch==1.5.0+cu101 torchvision==0.6.0+cu101 -f https://download.pytorch.org/whl/torch_stable.html
63+
64+
# CUDA 9.2
65+
pip install torch==1.5.0+cu92 torchvision==0.6.0+cu92 -f https://download.pytorch.org/whl/torch_stable.html
66+
67+
# CPU only
68+
pip install torch==1.5.0+cpu torchvision==0.6.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
69+
```
70+
71+
### v1.4.0
72+
73+
#### Conda
74+
75+
##### OSX
76+
77+
```
78+
# conda
79+
conda install pytorch==1.4.0 torchvision==0.5.0 -c pytorch
80+
```
81+
82+
##### Linux and Windows
83+
84+
```
85+
# CUDA 9.2
86+
conda install pytorch==1.4.0 torchvision==0.5.0 cudatoolkit=9.2 -c pytorch
87+
88+
# CUDA 10.1
89+
conda install pytorch==1.4.0 torchvision==0.5.0 cudatoolkit=10.1 -c pytorch
90+
91+
# CPU Only
92+
conda install pytorch==1.4.0 torchvision==0.5.0 cpuonly -c pytorch
93+
```
94+
95+
#### Wheel
96+
97+
##### OSX
98+
99+
```
100+
pip install torch==1.4.0 torchvision==0.5.0
101+
```
102+
103+
##### Linux and Windows
104+
105+
```
106+
# CUDA 10.1
107+
pip install torch==1.4.0 torchvision==0.5.0 -f https://download.pytorch.org/whl/torch_stable.html
108+
109+
# CUDA 9.2
110+
pip install torch==1.4.0+cu92 torchvision==0.5.0+cu92 -f https://download.pytorch.org/whl/torch_stable.html
111+
112+
# CPU only
113+
pip install torch==1.4.0+cpu torchvision==0.5.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
114+
```
115+
20116
### v1.2.0
21117

22118
#### Conda
@@ -53,7 +149,7 @@ pip install torch==1.2.0 torchvision==0.4.0
53149

54150
```
55151
# CUDA 10.0
56-
pip install torch===1.2.0 torchvision===0.4.0 -f https://download.pytorch.org/whl/torch_stable.html
152+
pip install torch==1.2.0 torchvision==0.4.0 -f https://download.pytorch.org/whl/torch_stable.html
57153
58154
# CUDA 9.2
59155
pip install torch==1.2.0+cu92 torchvision==0.4.0+cu92 -f https://download.pytorch.org/whl/torch_stable.html

0 commit comments

Comments
 (0)