본문 바로가기

전체 글

(18)
[OpenCV] ImportError: libGL.so.1: cannot open shared object file: No such file or directory ⭐️ 에러메시지 및 발생 환경 ImportError: libGL.so.1: cannot open shared object file: No such file or directory Ubuntu 20.04 환경 피씨 Ubuntu18.04 + python3.7.5 Docker image 내에서 opencv-python 설치 후 파이썬 스크립트 실행시 오류 발생 (+ 이전에 아래 명령어로 opencv-python 설치 완료) pip3 install opencv-python ⭐️ 에러 발생 시점 import cv2 cv2 관련 라이브러리 import 시점에 발생 ⭐️ 해결 과정 apt-get update -y apt-get install -y libgl1-mesa-glx 위 명령어로 libgl1-mesa-glx ..
[docker] docker daemon오류 해결법, dockerd의 개념, socket과의 관계 👋 Intro 안녕하세요, 유블린입니다. 이 글에서는 Dockerd에 대해 공부해 보려고 합니다. 도커를 처음 설치하고 docker로 시작하는 커맨드 라인을 쳐봤을때 발생하는 오류를 종종 보신적이 있으실겁니다. docker: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 이 에러 메시지에서 출발해서 공부해본 결과를 짧게 정리해 봤습니다. 정리한 내용의 순서는 아래와 같습니다. 1. dockerd의 개념 2. socket과의 관계 3. docker daemon오류 해결법 앞서 언급했 듯 도커를 설치하고 처음으로 docker로 시작하는 명령어를 실행하면 아래와 같은 오류를 만날 수..
[leetcode]1315. Sum of Nodes with Even-Valued Grandparent _ python3 1315. Sum of Nodes with Even-Valued Grandparent Sum of Nodes with Even-Valued Grandparent - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 풀이 코드 조부모 노드의 값이 짝수인 노드들의 합을 구하는 문제이다. 깊이우선탐색으로 해결했다. 단지 주의 할 부분은 dfs 함수를 재귀로 호출할 때, 현재 노드 = 부모 노드 / 현재의 부모 노드 = 조부모 노드 가 된다는 부분이다. 이 점을 고려해 d..