Skip to content

Commit 8ab6eb7

Browse files
committed
1 parent 8b60c6e commit 8ab6eb7

26 files changed

+405
-124
lines changed

_config.yml

+38-20
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Site settings
2-
title: "PyTorch Korea User Group"
3-
author: "PyTorch Korea User Group"
4-
default_author: PyTorch Korea User Group
2+
title: "파이토치 한국 사용자 모임 (PyTorch Korea User Group)"
3+
author: "PyTorchKorea Maintainers"
4+
default_author: "PyTorchKorea Maintainers"
55
description: "파이토치 한국 사용자 모임에 오신 것을 환영합니다. 딥러닝 프레임워크인 파이토치(PyTorch)를 사용하는 한국어 사용자들을 위해 문서를 번역하고 정보를 공유하고 있습니다."
66
latest_version: 1.0
77
timezone: Asia/Seoul
@@ -11,45 +11,63 @@ plugins:
1111
- jekyll-redirect-from
1212
- jekyll-autoprefixer
1313
- jekyll-feed
14-
- jekyll-github-metadata
1514
sass:
1615
load_paths:
1716
- _sass
1817
- node_modules
19-
exclude: [vendor, node_modules, Gemfile, Gemdile.lock, README.md, LICENSE, CONTRIBUTING.md, yarn.lock, yarn-error.log, package.json, Makefile, scripts, docs, _hub/docs/template.md]
20-
include: [.nojekyll, CNAME, _static, _images, _modules, _sources, _tensor_str.html, _utils.html]
18+
exclude: [
19+
vendor,
20+
node_modules,
21+
README.md,
22+
CODE_OF_CONDUCT.md,
23+
Gemfile,
24+
Gemdile.lock,
25+
LICENSE,
26+
yarn.lock,
27+
yarn-error.log,
28+
package.json,
29+
Makefile,
30+
scripts,
31+
docs,
32+
_hub/docs/template.md
33+
]
34+
include: [
35+
.nojekyll,
36+
CNAME,
37+
_static,
38+
_images,
39+
_modules,
40+
_sources,
41+
_tensor_str.html,
42+
_utils.html
43+
]
2144
keep_files: [vendor/assets, docs/master/_static/js/vendor/]
22-
repository: PyTorchKorea/pytorch.kr
45+
github: [metadata]
2346
external_urls:
24-
org_www: https://pytorch.org
47+
org: https://pytorch.org
2548
org_docs: https://pytorch.org/docs
2649
org_tutorials: https://pytorch.org/tutorials
2750
hub_template: https://github.com/pytorch/hub/blob/master/docs/template.md
2851
previous_pytorch_versions: https://pytorch.kr/get-started/previous-versions/
29-
site_tutorials: https://tutorials.pytorch.kr/
30-
site_community: https://discuss.pytorch.kr/
31-
site_hub: https://pytorch.kr/hub
32-
repo_tutorials: https://github.com/PyTorchKorea/tutorials-kr
33-
repo_hub: https://github.com/PyTorchKorea/hub-kr
34-
repo_www: https://github.com/PyTorchKorea/pytorch.kr
35-
repo_org: https://github.com/PyTorchKorea
52+
hub_issue: https://github.com/PyTorchKorea/hub-kr/issues
53+
www_issue: https://github.com/PyTorchKorea/pytorch.kr/issues
54+
community: https://discuss.pytorch.kr/
55+
tutorials: https://tutorials.pytorch.kr/
56+
tutorials_github: https://github.com/PyTorchKorea/tutorials-kr
3657
livereload: false
3758
markdown: kramdown
3859
highlighter: rouge
3960
collections:
4061
about:
41-
output: false
62+
output: true
4263
get_started:
4364
output: true
4465
hub:
4566
output: true
4667
permalink: /hub/:title/
47-
maintainers:
48-
output: false
4968
resources:
5069
output: false
5170
features:
52-
output: false
71+
output: true
5372
news:
5473
output: true
55-
permalink: /news/:title/

_get_started/installation/linux.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ PyTorch is supported on Linux distributions that use [glibc](https://www.gnu.org
2525
### Python
2626
{: #linux-python}
2727

28-
Python 3.6 or greater is generally installed by default on any of our supported Linux distributions, which meets our recommendation.
28+
Python 3.7 or greater is generally installed by default on any of our supported Linux distributions, which meets our recommendation.
2929

3030
> Tip: By default, you will have to use the command `python3` to run Python. If you want to use just the command `python`, instead of `python3`, you can symlink `python` to the `python3` binary.
3131

_get_started/installation/mac.md

+13-12
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
# Installing on macOS
22
{:.no_toc}
33

4-
PyTorch can be installed and used on macOS. Depending on your system and compute requirements, your experience with PyTorch on a Mac may vary in terms of processing time. It is recommended, but not required, that your Mac have an NVIDIA GPU in order to harness the full power of PyTorch's [CUDA](https://developer.nvidia.com/cuda-zone) [support](https://pytorch.org/tutorials/beginner/blitz/tensor_tutorial.html?highlight=cuda#cuda-tensors).
5-
6-
> Currently, CUDA support on macOS is only available by [building PyTorch from source](#mac-from-source)
4+
PyTorch can be installed and used on macOS. Depending on your system and GPU capabilities, your experience with PyTorch on a Mac may vary in terms of processing time.
75

86
## Prerequisites
97
{: #mac-prerequisites}
108

119
### macOS Version
1210

13-
PyTorch is supported on macOS 10.10 (Yosemite) or above.
11+
PyTorch is supported on macOS 10.15 (Catalina) or above.
1412

1513
### Python
1614
{: #mac-python}
1715

18-
It is recommended that you use Python 3.5 or greater, which can be installed either through the Anaconda package manager (see [below](#anaconda)), [Homebrew](https://brew.sh/), or the [Python website](https://www.python.org/downloads/mac-osx/).
16+
It is recommended that you use Python 3.7 or greater, which can be installed either through the Anaconda package manager (see [below](#anaconda)), [Homebrew](https://brew.sh/), or the [Python website](https://www.python.org/downloads/mac-osx/).
1917

2018
### Package Manager
2119
{: #mac-package-manager}
@@ -24,15 +22,21 @@ To install the PyTorch binaries, you will need to use one of two supported packa
2422

2523
#### Anaconda
2624

27-
To install Anaconda, you can [download graphical installer](https://www.anaconda.com/download/#macos) or use the command-line installer. If you use the command-line installer, you can right-click on the installer link, select `Copy Link Address`, and then use the following commands:
25+
To install Anaconda, you can [download graphical installer](https://www.anaconda.com/download/#macos) or use the command-line installer. If you use the command-line installer, you can right-click on the installer link, select `Copy Link Address`, or use the following commands on Intel Mac:
2826

2927
```bash
3028
# The version of Anaconda may be different depending on when you are installing`
3129
curl -O https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
3230
sh Miniconda3-latest-MacOSX-x86_64.sh
3331
# and follow the prompts. The defaults are generally good.`
3432
```
35-
33+
or following commands on M1 Mac:
34+
```bash
35+
# The version of Anaconda may be different depending on when you are installing`
36+
curl -O https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh
37+
sh Miniconda3-latest-MacOSX-arm64.sh
38+
# and follow the prompts. The defaults are generally good.`
39+
```
3640
#### pip
3741

3842
*Python 3*
@@ -89,13 +93,10 @@ tensor([[0.3380, 0.3845, 0.3217],
8993

9094
For the majority of PyTorch users, installing from a pre-built binary via a package manager will provide the best experience. However, there are times when you may want to install the bleeding edge PyTorch code, whether for testing or actual development on the PyTorch core. To install the latest PyTorch code, you will need to [build PyTorch from source](https://github.com/pytorch/pytorch#from-source).
9195

92-
> You will also need to build from source if you want CUDA support.
93-
9496
### Prerequisites
9597
{: #mac-prerequisites-2}
9698

97-
1. Install [Anaconda](#anaconda)
98-
2. Install [CUDA](https://developer.nvidia.com/cuda-downloads), if your machine has a [CUDA-enabled GPU](https://developer.nvidia.com/cuda-gpus).
99-
3. Follow the steps described here: [https://github.com/pytorch/pytorch#from-source](https://github.com/pytorch/pytorch#from-source)
99+
1. [Optional] Install [Anaconda](#anaconda)
100+
2. Follow the steps described here: [https://github.com/pytorch/pytorch#from-source](https://github.com/pytorch/pytorch#from-source)
100101

101102
You can verify the installation as described [above](#mac-verification).

_get_started/installation/windows.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ PyTorch is supported on the following Windows distributions:
1818
### Python
1919
{: #windows-python}
2020

21-
Currently, PyTorch on Windows only supports Python 3.x; Python 2.x is not supported.
21+
Currently, PyTorch on Windows only supports Python 3.7-3.9; Python 2.x is not supported.
2222

2323
As it is not installed by default on Windows, there are multiple ways to install Python:
2424

_get_started/previous-versions.md

+212
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,218 @@ redirect_from: /previous-versions.html
1616

1717
## 1.0.0 이상 버전 설치하기
1818

19+
### v1.11.0
20+
21+
#### Conda
22+
23+
##### OSX
24+
25+
```
26+
# conda
27+
conda install pytorch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0 -c pytorch
28+
```
29+
30+
##### Linux and Windows
31+
32+
```
33+
# CUDA 10.2
34+
conda install pytorch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0 cudatoolkit=10.2 -c pytorch
35+
36+
# CUDA 11.3
37+
conda install pytorch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0 cudatoolkit=11.3 -c pytorch
38+
39+
# CPU Only
40+
conda install pytorch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0 cpuonly -c pytorch
41+
```
42+
43+
#### Wheel
44+
45+
##### OSX
46+
47+
```
48+
pip install torch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0
49+
```
50+
51+
##### Linux and Windows
52+
53+
```
54+
# ROCM 4.5.2 (Linux only)
55+
pip install torch==1.11.0+rocm4.5.2 torchvision==0.12.0+rocm4.5.2 torchaudio==0.11.0 --extra-index-url https://download.pytorch.org/whl/rocm4.5.2
56+
57+
# CUDA 11.3
58+
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
59+
60+
# CUDA 10.2
61+
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
62+
63+
# CPU only
64+
pip install torch==1.11.0+cpu torchvision==0.12.0+cpu torchaudio==0.11.0 --extra-index-url https://download.pytorch.org/whl/cpu
65+
```
66+
67+
### v1.10.1
68+
69+
#### Conda
70+
71+
##### OSX
72+
73+
```
74+
# conda
75+
conda install pytorch==1.10.1 torchvision==0.11.2 torchaudio==0.10.1 -c pytorch
76+
```
77+
78+
##### Linux and Windows
79+
80+
```
81+
# CUDA 10.2
82+
conda install pytorch==1.10.1 torchvision==0.11.2 torchaudio==0.10.1 cudatoolkit=10.2 -c pytorch
83+
84+
# CUDA 11.3
85+
conda install pytorch==1.10.1 torchvision==0.11.2 torchaudio==0.10.1 cudatoolkit=11.3 -c pytorch -c conda-forge
86+
87+
# CPU Only
88+
conda install pytorch==1.10.1 torchvision==0.11.2 torchaudio==0.10.1 cpuonly -c pytorch
89+
```
90+
91+
#### Wheel
92+
93+
##### OSX
94+
95+
```
96+
pip install torch==1.10.1 torchvision==0.11.2 torchaudio==0.10.1
97+
```
98+
99+
##### Linux and Windows
100+
101+
```
102+
# ROCM 4.2 (Linux only)
103+
pip install torch==1.10.1+rocm4.2 torchvision==0.11.2+rocm4.2 torchaudio==0.10.1 -f https://download.pytorch.org/whl/torch_stable.html
104+
105+
# ROCM 4.1 (Linux only)
106+
pip install torch==1.10.1+rocm4.1 torchvision==0.11.2+rocm4.1 torchaudio==0.10.1 -f https://download.pytorch.org/whl/torch_stable.html
107+
108+
# ROCM 4.0.1 (Linux only)
109+
pip install torch==1.10.1+rocm4.0.1 torchvision==0.10.2+rocm4.0.1 torchaudio==0.10.1 -f https://download.pytorch.org/whl/torch_stable.html
110+
111+
# CUDA 11.1
112+
pip install torch==1.10.1+cu111 torchvision==0.11.2+cu111 torchaudio==0.10.1 -f https://download.pytorch.org/whl/torch_stable.html
113+
114+
# CUDA 10.2
115+
pip install torch==1.10.1+cu102 torchvision==0.11.2+cu102 torchaudio==0.10.1 -f https://download.pytorch.org/whl/torch_stable.html
116+
117+
# CPU only
118+
pip install torch==1.10.1+cpu torchvision==0.11.2+cpu torchaudio==0.10.1 -f https://download.pytorch.org/whl/torch_stable.html
119+
```
120+
121+
122+
### v1.10.0
123+
124+
#### Conda
125+
126+
##### OSX
127+
128+
```
129+
# conda
130+
conda install pytorch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0 -c pytorch
131+
```
132+
133+
##### Linux and Windows
134+
135+
```
136+
# CUDA 10.2
137+
conda install pytorch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0 cudatoolkit=10.2 -c pytorch
138+
139+
# CUDA 11.3
140+
conda install pytorch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0 cudatoolkit=11.3 -c pytorch -c conda-forge
141+
142+
# CPU Only
143+
conda install pytorch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0 cpuonly -c pytorch
144+
```
145+
146+
#### Wheel
147+
148+
##### OSX
149+
150+
```
151+
pip install torch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0
152+
```
153+
154+
##### Linux and Windows
155+
156+
```
157+
# ROCM 4.2 (Linux only)
158+
pip install torch==1.10.0+rocm4.2 torchvision==0.11.0+rocm4.2 torchaudio==0.10.0 -f https://download.pytorch.org/whl/torch_stable.html
159+
160+
# ROCM 4.1 (Linux only)
161+
pip install torch==1.10.0+rocm4.1 torchvision==0.11.0+rocm4.1 torchaudio==0.10.0 -f https://download.pytorch.org/whl/torch_stable.html
162+
163+
# ROCM 4.0.1 (Linux only)
164+
pip install torch==1.10.0+rocm4.0.1 torchvision==0.10.1+rocm4.0.1 torchaudio==0.10.0 -f https://download.pytorch.org/whl/torch_stable.html
165+
166+
# CUDA 11.1
167+
pip install torch==1.10.0+cu111 torchvision==0.11.0+cu111 torchaudio==0.10.0 -f https://download.pytorch.org/whl/torch_stable.html
168+
169+
# CUDA 10.2
170+
pip install torch==1.10.0+cu102 torchvision==0.11.0+cu102 torchaudio==0.10.0 -f https://download.pytorch.org/whl/torch_stable.html
171+
172+
# CPU only
173+
pip install torch==1.10.0+cpu torchvision==0.11.0+cpu torchaudio==0.10.0 -f https://download.pytorch.org/whl/torch_stable.html
174+
```
175+
176+
177+
### v1.9.1
178+
179+
#### Conda
180+
181+
##### OSX
182+
183+
```
184+
# conda
185+
conda install pytorch==1.9.1 torchvision==0.10.1 torchaudio==0.9.1 -c pytorch
186+
```
187+
188+
##### Linux and Windows
189+
190+
```
191+
# CUDA 10.2
192+
conda install pytorch==1.9.1 torchvision==0.10.1 torchaudio==0.9.1 cudatoolkit=10.2 -c pytorch
193+
194+
# CUDA 11.3
195+
conda install pytorch==1.9.1 torchvision==0.10.1 torchaudio==0.9.1 cudatoolkit=11.3 -c pytorch -c conda-forge
196+
197+
# CPU Only
198+
conda install pytorch==1.9.0 torchvision==0.10.1 torchaudio==0.9.1 cpuonly -c pytorch
199+
```
200+
201+
#### Wheel
202+
203+
##### OSX
204+
205+
```
206+
pip install torch==1.9.1 torchvision==0.10.1 torchaudio==0.9.1
207+
```
208+
209+
##### Linux and Windows
210+
211+
```
212+
# ROCM 4.2 (Linux only)
213+
pip install torch==1.9.0+rocm4.2 torchvision==0.10.1+rocm4.2 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
214+
215+
# ROCM 4.1 (Linux only)
216+
pip install torch==1.9.0+rocm4.1 torchvision==0.10.1+rocm4.1 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
217+
218+
# ROCM 4.0.1 (Linux only)
219+
pip install torch==1.9.1+rocm4.0.1 torchvision==0.10.1+rocm4.0.1 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
220+
221+
# CUDA 11.1
222+
pip install torch==1.9.1+cu111 torchvision==0.10.1+cu111 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
223+
224+
# CUDA 10.2
225+
pip install torch==1.9.1+cu102 torchvision==0.10.1+cu102 torchaudio==0.9.0 -f https://download.pytorch.org/whl/torch_stable.html
226+
227+
# CPU only
228+
pip install torch==1.9.1+cpu torchvision==0.10.1+cpu torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
229+
```
230+
19231
### v1.9.0
20232

21233
#### Conda

0 commit comments

Comments
 (0)