해결된 질문
24.02.04 22:23 작성
·
342
답변 1
0
2024. 02. 05. 06:11
Sung Cheol님, 열심히 학습하고 계시는군요?
설정파일이 json (devcontainer.json) 파일을 말씀하시는 거죠?
json 파일의 전체 구조는 아래와 같습니다.
{ "name": "Existing Dockerfile", "build": { // Sets the run context to one level up instead of the .devcontainer folder. "context": "..", // Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename. "dockerfile": "../DockerFile" }, "runArgs": ["--gpus=all"], "customizations": { "vscode": { "extensions": [ "ms-toolsai.jupyter", "github.copilot", "ms-python.python" ] } } }
Sung Cheol님의 질문에 대해서만 설명을 드리면 "runArgs": ["--gpus=all"]로 설정하시면 됩니다. 이렇게 설정하시면 문제 없이 nvidia-smi가 실행될 겁니다.
감사합니다.
다니엘 드림