File size: 261 Bytes
7ac1a1c |
1 2 3 4 5 6 7 8 9 10 |
import os
import subprocess
os.system("git clone https://github.com/haoheliu/versatile_audio_super_resolution")
os.chdir("versatile_audio_super_resolution")
subprocess.run(["pip", "install", "-r", "requirements.txt"], check=True)
os.system("python app.py") |