File size: 352 Bytes
560d81b c9f5b8a 5fd30f3 c9f5b8a 5fd30f3 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
# Clone YOLOv10 repository
git clone https://github.com/WongKinYiu/YOLOv10.git /YOLOv10
# Navigate to YOLOv10 folder and install dependencies
cd /YOLOv10
pip install -r requirements.txt
# Make sure all other dependencies for your app are installed (like pytesseract, opencv, etc.)
pip install torch opencv-python pytesseract numpy gradio
|