File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,49 @@ your convenience.
1717
1818## Commands for Versions >= 1.0.0
1919
20+ ### v2.2.1
21+
22+ #### Conda
23+
24+ ##### OSX
25+
26+ ```
27+ # conda
28+ conda install pytorch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 -c pytorch
29+ ```
30+
31+ ##### Linux and Windows
32+
33+ ```
34+ # CUDA 11.8
35+ conda install pytorch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 pytorch-cuda=11.8 -c pytorch -c nvidia
36+ # CUDA 12.1
37+ conda install pytorch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 pytorch-cuda=12.1 -c pytorch -c nvidia
38+ # CPU Only
39+ conda install pytorch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 cpuonly -c pytorch
40+ ```
41+
42+ #### Wheel
43+
44+ ##### OSX
45+
46+ ```
47+ pip install torch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1
48+ ```
49+
50+ ##### Linux and Windows
51+
52+ ```
53+ # ROCM 5.7 (Linux only)
54+ pip install torch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 --index-url https://download.pytorch.org/whl/rocm5.7
55+ # CUDA 11.8
56+ pip install torch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 --index-url https://download.pytorch.org/whl/cu118
57+ # CUDA 12.1
58+ pip install torch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 --index-url https://download.pytorch.org/whl/cu121
59+ # CPU only
60+ pip install torch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 --index-url https://download.pytorch.org/whl/cpu
61+ ```
62+
2063### v2.2.0
2164
2265#### Conda
You can’t perform that action at this time.
0 commit comments