@@ -41,6 +41,36 @@ conda install pytorch==1.9.0 torchvision==0.10.0 torchaudio==0.9.0 cudatoolkit=1
4141conda install pytorch==1.9.0 torchvision==0.10.0 torchaudio==0.9.0 cpuonly -c pytorch
4242```
4343
44+ #### Wheel
45+
46+ ##### OSX
47+
48+ ```
49+ pip install torch==1.9.0 torchvision==0.10.0 torchaudio==0.9.0
50+ ```
51+
52+ ##### Linux and Windows
53+
54+ ```
55+ # ROCM 4.2 (Linux only)
56+ pip install torch==1.9.0+rocm4.2 torchvision==0.10.0+rocm4.2 torchaudio==0.9.0 -f https://download.pytorch.org/whl/torch_stable.html
57+
58+ # ROCM 4.1 (Linux only)
59+ pip install torch==1.9.0+rocm4.1 torchvision==0.10.0+rocm4.1 torchaudio==0.9.0 -f https://download.pytorch.org/whl/torch_stable.html
60+
61+ # ROCM 4.0.1 (Linux only)
62+ pip install torch==1.9.0+rocm4.0.1 torchvision==0.10.0+rocm4.0.1 torchaudio==0.9.0 -f https://download.pytorch.org/whl/torch_stable.html
63+
64+ # CUDA 11.1
65+ pip install torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio==0.9.0 -f https://download.pytorch.org/whl/torch_stable.html
66+
67+ # CUDA 10.2
68+ pip install torch==1.9.0+cu102 torchvision==0.10.0+cu102 torchaudio==0.9.0 -f https://download.pytorch.org/whl/torch_stable.html
69+
70+ # CPU only
71+ pip install torch==1.9.0+cpu torchvision==0.10.0+cpu torchaudio==0.9.0 -f https://download.pytorch.org/whl/torch_stable.html
72+ ```
73+
4474### v1.8.1
4575
4676#### Conda
@@ -65,6 +95,36 @@ conda install pytorch==1.8.1 torchvision==0.9.1 torchaudio==0.8.1 cudatoolkit=11
6595conda install pytorch==1.8.1 torchvision==0.9.1 torchaudio==0.8.1 cpuonly -c pytorch
6696```
6797
98+ #### Wheel
99+
100+ ##### OSX
101+
102+ ```
103+ pip install torch==1.8.1 torchvision==0.9.1 torchaudio==0.8.1
104+ ```
105+
106+ ##### Linux and Windows
107+
108+ ```
109+ # ROCM 4.0.1 (Linux only)
110+ pip install torch==1.8.1+rocm4.0.1 torchvision==0.9.1+rocm4.0.1 torchaudio==0.8.1 -f https://download.pytorch.org/whl/torch_stable.html
111+
112+ # ROCM 3.10 (Linux only)
113+ pip install torch==1.8.1+rocm3.10 torchvision==0.9.1+rocm3.10 torchaudio==0.8.1 -f https://download.pytorch.org/whl/torch_stable.html
114+
115+ # CUDA 11.1
116+ pip install torch==1.8.1+cu111 torchvision==0.9.1+cu111 torchaudio==0.8.1 -f https://download.pytorch.org/whl/torch_stable.html
117+
118+ # CUDA 10.2
119+ pip install torch==1.8.1+cu102 torchvision==0.9.1+cu102 torchaudio==0.8.1 -f https://download.pytorch.org/whl/torch_stable.html
120+
121+ # CUDA 10.1
122+ pip install torch==1.8.1+cu101 torchvision==0.9.1+cu101 torchaudio==0.8.1 -f https://download.pytorch.org/whl/torch_stable.html
123+
124+ # CPU only
125+ pip install torch==1.8.1+cpu torchvision==0.9.1+cpu torchaudio==0.8.1 -f https://download.pytorch.org/whl/torch_stable.html
126+ ```
127+
68128
69129### v1.8.0
70130
0 commit comments