giorgoskyriacou2009tv commited on
Commit
7bb63d2
·
verified ·
1 Parent(s): bb2cc15
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import subprocess
2
+
3
+ def install_package():
4
+ subprocess.run(["pip", "uninstall", "-y", "Greek-voice-clone"], check=True)
5
+
6
+ # Install the package on startup
7
+ install_package()
8
+
9
+ # Start the Gradio app
10
+ subprocess.run(["f5-tts_infer-gradio"])