giorgoskyriacou2009tv's picture
Update app.py
26b4206 verified
raw
history blame contribute delete
389 Bytes
import subprocess
def install_package():
subprocess.run(["pip", "uninstall", "-y", "Greek-voice-clone"], check=True)
subprocess.run(["pip", "install", "--upgrade", "git+https://github.com/giorgoskyriacou2009tv/greek-voice-clone", "--no-cache-dir"], check=True)
# Install the package on startup
install_package()
# Start the Gradio app
subprocess.run(["f5-tts_infer-gradio"])