Skip to content

Commit

Permalink
[Release 2.1.1] Update previous versions page (#1537)
Browse files Browse the repository at this point in the history
  • Loading branch information
atalman authored Dec 18, 2023
1 parent 97edf3c commit cfb47b8
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions _get_started/previous-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,49 @@ your convenience.

## Commands for Versions >= 1.0.0

### v2.1.1

#### Conda

##### OSX

```
# conda
conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 -c pytorch
```

##### Linux and Windows

```
# CUDA 11.8
conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 pytorch-cuda=11.8 -c pytorch -c nvidia
# CUDA 12.1
conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 pytorch-cuda=12.1 -c pytorch -c nvidia
# CPU Only
conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 cpuonly -c pytorch
```

#### Wheel

##### OSX

```
pip install torch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1
```

##### Linux and Windows

```
# ROCM 5.6 (Linux only)
pip install torch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 --index-url https://download.pytorch.org/whl/rocm5.6
# CUDA 11.8
pip install torch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 --index-url https://download.pytorch.org/whl/cu118
# CUDA 12.1
pip install torch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 --index-url https://download.pytorch.org/whl/cu121
# CPU only
pip install torch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 --index-url https://download.pytorch.org/whl/cpu
```

### v2.1.0

#### Conda
Expand Down

0 comments on commit cfb47b8

Please sign in to comment.