Spaces:
Runtime error
Runtime error
File size: 537 Bytes
e4dcb8d df2709f e4dcb8d 3f5f9fd e4dcb8d 3f5f9fd e4dcb8d dd2cd30 e4dcb8d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import subprocess
import os
import torch
import urllib.request
if torch.cuda.is_available():
print("Using GPU")
else:
print("Using CPU")
# Clone the repository
subprocess.run(["git", "clone", "https://github.com/poiqazwsx/Ilaria-RVC-Mainline-Huggingface"], check=True)
# chande directory
os.chdir("Ilaria-RVC-Mainline-Huggingface")
# installing other requirements
subprocess.run(["pip", "install", "-r", "requirements.txt"], check=True)
print("Finished Installing")
subprocess.run(["python", "infer-web.py"], check=True)
|