Nick088 commited on
Commit
7ac1a1c
1 Parent(s): a91cbd6

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
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")