#!/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