File size: 367 Bytes
cc20962
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import subprocess

def install_package():
    subprocess.run(["pip", "uninstall", "-y", "Spanish-F5"], check=True)
    subprocess.run(["pip", "install", "--upgrade", "git+https://huggingface.co/firstpixel/F5-TTS-pt-br/", "--no-cache-dir"], check=True)

# Install the package on startup
install_package()

# Start the Gradio app
subprocess.run(["f5-tts_infer-gradio"])