Skip to content

Commit b6f34f5

Browse files
committed
[Modify] setup
1 parent d96595e commit b6f34f5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
# PyTorch Project Template
22
* 본 Repository는 PyTorch를 통해 프로젝트를 수행할 때 기반이 되는 코드베이스 템플릿입니다.
33

4-
# Installation
4+
# Installation & Environment Setup
55
```
66
# Docker Container Setup
77
docker pull ubuntu:22.04
8-
docker run -itd --gpus=all --shm-size=16G --name=<container_name> <image_name>
8+
docker run -itd --gpus=all --shm-size=16G --name=<container_name> ubuntu:22.04
99
1010
# Ubuntu
1111
apt-get update
1212
apt-get install sudo
1313
sudo apt-get install python3
14+
sudo apt-get git
15+
git clone https://github.com/drawcodeboy/PyTorch-Project-Template.git
16+
cd <project_folder_name>
1417
python3 -m venv .venv
1518
source .venv/bin/activate
19+
pip install -r requirements.txt
1620
```
1721
# Train & Test
1822
```

0 commit comments

Comments
 (0)