- Open your terminal (or Command Prompt on Windows).
- Navigate to the directory where you want to clone the repository.
- Use the
git clonecommand followed by the URL of your GitHub repository. For example:
git clone https://github.com/vignexshh/visionaide.gitOnce the repository is cloned, navigate into the project directory:
cd visionaide It's a good practice to create a virtual environment to manage your project dependencies. Here are the commands to create and activate a virtual environment:
For Windows:
python -m venv venv
venv\Scripts\activateFor macOS and Linux:
python3 -m venv venv
source venv/bin/activateInstall the required packages using pip. Ensure you have a requirements.txt file in your project directory. If not, you can create it and list all the required packages:
Create requirements.txt (file already exists):
gradio
numpy
opencv-python
mediapipe
gtts
pytesseractInstall the packages:
pip install -r requirements.txtEnsure you have the efficientdet.tflite model file in the same directory as your app.py. If not, download it and place it in the directory.
Run the app.py script to start the Gradio interface:
python app.pyThis will launch the Gradio app, and you should see the interface in your web browser.
Your Gradio interface should now be up and running in your local-host address. Star this repo if you found usefull & follow me!