RaspberryPi
RaspberryPi4 + YOLOv5 Error 및 추가 설치
BlushfulCactus
2022. 5. 5. 12:20
반응형
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
반응형