→ Opzetten van een Gradio project met Python en VS Code als editor
Een Virtuele omgeving creëren vanuit VS Code
→ Pakketten toevoegen aan deze omgeving doe je via de terminal in VS Code.
pip install gradio
Update/Upgrade naar de laatste versie:
pip install --upgrade gradio
Instaleer dotenv om het .env bestand te kunnen lezen zodat daar de systeem variabelen in kunnen
pip install python-dotenv
Applicatie starten met auto reload:
When developing locally, if you want to run the code as a Python script, you can use the Gradio CLI to launch the application in reload mode, which will provide seamless and fast development. Learn more about reloading in the Auto-Reloading Guide.
gradio app.py
Je kunt ook de app starten zonder Auto-Reloading:
python app.py
Je App delen met anderen → publiekelijk:
demo.launch(share=True)
→ http://localhost:7860 om app de zien
→ Gradio quickstart
→ Gradio Docs.