"""Script to prepare the env for gradio app.""" import sys import subprocess subprocess.check_call([sys.executable, "-m", "pip", "install", "huggingface_hub==0.25.1"]) subprocess.check_call([sys.executable, "gradio_app.py"])