일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Decision Boundary
- 히비스서커스
- CellPin
- docker attach
- 오블완
- 사회조사분석사2급
- ssh
- 기초확률론
- GIT
- cocre
- numpy
- HookNet
- Pull Request
- vscode
- cs231n
- AIFFEL
- docker exec
- 도커
- 티스토리챌린지
- docker
- logistic regression
- WSSS
- 백신후원
- Multi-Resolution Networks for Semantic Segmentation in Whole Slide Images
- 코크리
- 프로그래머스
- airflow
- IVI
- aiffel exploration
- Jupyter notebook
Archives
- Today
- Total
히비스서커스의 블로그
[Docker] nvidia docker 설치 중 여러 발생 에러 해결 본문
728x90
nvidia docker 설치하는 방법은 아래의 공식 링크를 확인
https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html
설치하면서 발생한 여러 에러를 적어본다.
Could not resolve host: github.com
정확한 에러는 모르겠으나 github에서 파일을 받아오는데 config관련하여 에러가 발생하였기 때문인 것으로 보인다. 해결방법은
$ git config --global --unset http.proxy
$ git config --global --unset https.proxy
위의 두 줄을 입력 후 다시하면 된다.
그 후 발생한 에러
N: Ignoring file 'skypeforlinux.lis' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
E: Conflicting values set for option Signed-By regarding source https://download.docker.com/linux/ubuntu/ focal: /usr/share/keyrings/docker-ce-archive-keyring.gpg != /usr/share/keyrings/docker-archive-keyring.gpg
E: Conflicting values set for option Signed-By regarding source https://nvidia.github.io/libnvidia-container/stable/ubuntu18.04/amd64/ /: /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg !=
E: The list of sources could not be read.
이는 /etc/apt/sources.list.d 디렉토리에 기존에 설치된 nvidia-docker.list 와 관련된 파일들이 존재하여 충돌하기 때문이다. 이름과 생성된 날짜를 보며 설치하는 파일들과 겹친다면 삭제해주고 다시 명령어를 입력해주면 잘 된다.
참조한 깃헙 이슈
https://github.com/desktop/desktop/issues/4872
https://github.com/NVIDIA/nvidia-docker/issues/1626
-히비스서커스-
728x90