일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 핑거스타일
- label
- paramiko
- 기타 연주
- C
- OpenCV
- C#
- nvidia-smi
- Python
- ubuntu
- Numpy
- 컨테이너
- 오류
- mysql
- JSON
- VS Code
- windows forms
- SSH
- YOLO
- pytorch
- error
- 채보
- Docker
- pandas
- 프로그래머스
- pip
- Selenium
- Visual Studio
- C++
- Linux
- Today
- Total
목록전체 글 (330)
기계는 거짓말하지 않는다
https://github.com/theAIGuysCode/yolov3_deepsort GitHub - theAIGuysCode/yolov3_deepsort: Object tracking implemented with YOLOv3, Deep Sort and Tensorflow. Object tracking implemented with YOLOv3, Deep Sort and Tensorflow. - GitHub - theAIGuysCode/yolov3_deepsort: Object tracking implemented with YOLOv3, Deep Sort and Tensorflow. github.com YOLOv3 deepSORT 실행 시 다음과 같은 오류가 발생할 수 있다. KeyError: "Th..

8 버전 이후는 아래와 같이 사용한다. cat /usr/local/cuda/include/cudnn_version.h | grep CUDNN_MAJOR -A 2 8 버전 보다 낮을 경우 헤더파일이 다르다. (cudnn.h) 아래와 같이 입력한다. cat /usr/local/cuda/include/cudnn.h | grep CUDNN_MAJOR -A 2

Updates were rejected because the remote contains work that you do git pull 후 다시 git push 과정을 실행한다.

cmake 업데이트 후 cmake --version 확인 시 위와 같은 오류를 보는 경우가 있다. 아래의 명령어를 입력하고 다시 버전을 확인해 본다. hash -r cmake --version

The command could not be located because '/bin' is not included in the PATH environment variable. bashrc 수정 후 source 적용하고 나면 위와 같은 오류를 보는 경우가 있다. PATH 환경변수를 임시로 아래와 같이 적용한다. export PATH=/usr/bin:/bin
fatal error: openssl/opensslv.h: No such file or directory 위와 같은 에러 메시지를 보는 경우가 있다. 다음 패키지를 설치한다. sudo apt-get install libssl-dev
Thread 사용 시 args 매개 변수를 튜플로 전달할 때 오류이다. 튜플로 하나의 매개 변수만 전달 할 시, # 오류 t = threading.Thread(target=custom_function, args=(value1)) 아래와 같이 하나의 매개 변수만 전달하더라도 콤마(,)가 필요하다. # Comma , t = threading.Thread(target=custom_function, args=(value1,))