일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- C#
- C++
- 컨테이너
- Numpy
- pytorch
- SSH
- error
- Docker
- JSON
- VS Code
- 프로그래머스
- YOLO
- 채보
- LIST
- mysql
- Python
- 기타 연주
- OpenCV
- 오류
- pandas
- Linux
- C
- ubuntu
- paramiko
- pip
- windows forms
- Selenium
- 핑거스타일
- label
- Visual Studio
- Today
- Total
목록전체 글 (322)
기계는 거짓말하지 않는다
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..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/GhN7N/btrGfy4ohK6/0nzwDO8CQduT8TqKQ6uyTK/img.png)
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
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/E4saj/btrFyaXHQfL/ZxdI7Pk5Xyp4oFQeOlhPmk/img.png)
Updates were rejected because the remote contains work that you do git pull 후 다시 git push 과정을 실행한다.
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cBvBA4/btrFzwzf8P1/0eyAkH1zqvbv8B9faH5A7k/img.png)
cmake 업데이트 후 cmake --version 확인 시 위와 같은 오류를 보는 경우가 있다. 아래의 명령어를 입력하고 다시 버전을 확인해 본다. hash -r cmake --version
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/uq30I/btrFyQLv702/v7ORIcJBNQUAi09Io6Sky1/img.png)
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,))