Spaces:
Running
on
Zero
Running
on
Zero
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import subprocess
|
3 |
+
|
4 |
+
os.system("git clone https://github.com/haoheliu/versatile_audio_super_resolution")
|
5 |
+
|
6 |
+
os.chdir("versatile_audio_super_resolution")
|
7 |
+
|
8 |
+
subprocess.run(["pip", "install", "-r", "requirements.txt"], check=True)
|
9 |
+
|
10 |
+
os.system("python app.py")
|