본문 바로가기

에러61

ssh 접속에러 에러: ssh 접속에러 내용: Host key verification failed 해결: ssh-keygen -R 2020. 11. 5.
cv2.findContours 에러 cv2.findContours를 처리하는 줄에서 에러가 발생하였다. ValueError: not enough values to unpack (expected 3, got 2) 다음의 에러 문구를 출력하였는데, OpenCV 3.4.3 이하 버전에서는 코드를 달리 작성해야 하는 것 같다. 예제를 보고 _, contours, _ = cv2.findContours(…)와 같이 작성하였는데, contours, _ = cv2.findContours(…) 로 작성하니 정상 작동하였다. 2020. 11. 5.
django 실행 에러 python manage.py 명령 시 에러: django.core.exceptions.ImproperlyConfigured: mysqlclient 1.4.0 or newer is required; you have 0.10.0. 해결: pip inatll django==2.1 2020. 11. 5.
[conda] command not found error your shell has not been properly configured to use conda activate 에러 anaconda 가상환경 생성 후 activate이 되지 않을 때 내용: command not found error your shell has not been properly configured to use conda activate 해결: source ~/anaconda3/etc/profile.d/conda.sh 실행 후 conda activate 2020. 10. 4.
안드로이드 스튜디오 디버그 시 에러 안드로이드 스튜디오 앱 실행 시 에러: cannot fit requested classes in a single dex file 해결: minSDK 조정 2020. 9. 28.
pip install dlib 에러 Facial Landmark 검출을 위해 dlib를 설치하고자 할 때 에러가 발생하였다. failed to build dlib, consider using the –user option or check the permission 다음과 같이 에러문구를 출력하였는데, 출력된 문구와의 연관성을 모르겠으나, 머신에 cmake가 설치되어 있지 않아, 이를 설치하니 해결되었다 pip install cmake 명령으로 cmake를 설치하고 Anaconda prompt를 관리자 권한으로 실행 한 후, 다시 pip install dlib을 수행하니 올바르게 설치되었다. 2020. 9. 27.