File tree Expand file tree Collapse file tree 1 file changed +51
-0
lines changed Expand file tree Collapse file tree 1 file changed +51
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,57 @@ your convenience.
17
17
18
18
## Commands for Versions >= 1.0.0
19
19
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
+
20
71
### v1.5.1
21
72
22
73
#### Conda
You can’t perform that action at this time.
0 commit comments