Spaces:
Runtime error
Runtime error
File size: 851 Bytes
83d8d3c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# Installation
### [Torch v1.11.0](https://pytorch.org/get-started/previous-versions/#v1110)
#### Linux and Windows
- CUDA 11.3
```shell
pip install torch==1.11.0+cu113 torchvision==0.12.0+cu113 torchaudio==0.11.0 --extra-index-url https://download.pytorch.org/whl/cu113
```
- CUDA 10.2
```shell
pip install torch==1.11.0+cu102 torchvision==0.12.0+cu102 torchaudio==0.11.0 --extra-index-url https://download.pytorch.org/whl/cu102
```
### [Torch v1.9.0](https://pytorch.org/get-started/previous-versions/#v190)
#### Linux and Windows
- CUDA 11.1
```shell
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
```
- CUDA 10.2
```shell
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
```
|