error(3)
-
[Python] Mac OS 이용 시 ssl: certificate_verify_failed 에러 해결 방법 (urlerror)
안녕하세요 코딩왕 코주부입니다. 며칠 전 맥북으로 파이썬 사용 중 pip install ** 명령어를 실행하다가 마주친 에러입니다. urlerror: 이 에러를 해결하기 위한 방법은 아래와 같습니다! import ssl ssl._create_default_https_context = ssl._create_unverified_context ## 해결 완료 ## 해결 방법을 못 찾아서 꽤나 헤맸었는데 컴맹이 맥북 쓰기 참 쉽지 않네요 ㅎㅎ
2022.07.24 -
[Python] No module named 'cv2' Error 해결 방법 (import cv2 에러)
안녕하세요 코딩왕 코주부입니다. Python에서 image 이미지 파일을 활용할 때 쓰이는 cv2 모듈 에러 해결 방법입니다. import cv2 img = cv2.imread('find_text_from_img.png') ## Error ## # ModuleNotFoundError: No module named 'cv2' cv2 모듈을 불러오려고 하였으나 No moudule Error 가 발생하고 말았네요 ㅠㅠ 아마 pip install cv2 를 시도해보실 수도 있을텐데 아래와 같은 방법으로 해결하여야 합니다. ## opencv-python 설치 ## pip install opencv-python opencv-python 모듈을 설치해보세요. 설치 완료 후에는 import cv2 을 통해 불러와 봅니..
2022.06.11 -
npm install yarn unable to verify the first certificate 에러 해결
request to https://registry.npmjs.org/yarn failed, reason: unable to verify the first certificate 에러 발생 시 해결 방법 npm config set registry http://registry.npmjs.org/ --global
2021.09.15