728x90
반응형
2022.05.05 - [RaspberryPi] - RaspberryPi+YOLOv5
앞의 글에서 yolo 설치 후 실행했을 때 에러가 발생할 수 있다.
에러에 대한 해결과 추가 설치가 필요한 부분에 대한 설명이다.
numpy is not available
python의 라이브러리인 numpy의 버전이 업데이트되지 않아 발생하는 문제다.
업데이트를 하면 해결된다.
pip install --upgrade numpy
추가 에러에 대한 해결 명령어
# yolov5 repository
git clone https://github.com/ultralytics/yolov5
#cv2
pip3 install opencv-python
#import error
sudo apt-get install libatlas-base-dev
#tqdm
pip3 install tqdm
#yaml
pip3 install pyyaml
#matplotlib
pip3 install matplotlib
#pandas
pip3 install pandas
#seaborn
pip3 install seaborn
#thop
pip3 install thop
728x90
반응형
'RaspberryPi' 카테고리의 다른 글
Python yolov5(detect.py) (0) | 2022.05.06 |
---|---|
Python3 OCR + gtts (0) | 2022.05.06 |
RaspberryPi + opencv (0) | 2022.05.05 |
RaspberryPi + YOLOv5 (1) | 2022.05.05 |
RaspberryPi 화면 보호기(자동화면꺼짐설정) (0) | 2022.05.05 |