기존 개발시에는 로컬환경에서 필요한 요소들을 설치하며 Device에 맞게 진행하였다. 하지만 이제는 Internship을 진행하면서 다양한 Devices를 고려해야 하기 때문에 Docker를 이용하기로 했다. Ubuntu 에서 Docker 개발환경 설치를 위한 명령어들을 간단히 정리해본다. #Linux Device check sudo lshw -C system # Check ip ifconfig # Docker image file download docker pull pytorch/pytorch # Check docker images docker image ls # Make container (Only first time) docker run -d -it --gpus all --name dylan-pyt..