Skip to content

Commit

Permalink
PyTorch 2.3.1 릴리즈 반영(pytorch/pytorch.github.io@c2cd932, #54)
Browse files Browse the repository at this point in the history
  • Loading branch information
9bow committed Jun 15, 2024
1 parent 4c2a47d commit 596eaf9
Show file tree
Hide file tree
Showing 3 changed files with 391 additions and 33 deletions.
86 changes: 86 additions & 0 deletions _get_started/previous-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,92 @@ redirect_from: /previous-versions.html

## 1.0.0 이상 버전 설치하기

### v2.3.0

#### Conda

##### OSX

```
# conda
conda install pytorch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 -c pytorch
```

##### Linux and Windows

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

#### Wheel

##### OSX

```
pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0
```

##### Linux and Windows

```
# ROCM 6.0 (Linux only)
pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 --index-url https://download.pytorch.org/whl/rocm6.0
# CUDA 11.8
pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 --index-url https://download.pytorch.org/whl/cu118
# CUDA 12.1
pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 --index-url https://download.pytorch.org/whl/cu121
# CPU only
pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 --index-url https://download.pytorch.org/whl/cpu
```

### v2.2.2

#### Conda

##### OSX

```
# conda
conda install pytorch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 -c pytorch
```

##### Linux and Windows

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

#### Wheel

##### OSX

```
pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2
```

##### Linux and Windows

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

### v2.2.1

#### Conda
Expand Down
Loading

0 comments on commit 596eaf9

Please sign in to comment.