File size: 702 Bytes
962014c
ebc81de
5f091f6
 
 
3e49366
5f091f6
 
3e49366
5f091f6
60e78ea
298cb83
5e02ea5
ebc81de
 
298cb83
5f091f6
0410452
5f091f6
298cb83
70518d9
d677563
70518d9
d677563
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import subprocess
import os
import torch

if torch.cuda.is_available():
  device="cuda"
  print("Using GPU")
else:
  device="cpu"
  print("Using CPU")

# Clone the repository
subprocess.run(["git", "clone", "https://github.com/dark2star/facefusion", "--branch", "master", "--single-branch"], check=True)
# chande directory to face fusion to run ui
os.chdir("facefusion")

# installation
subprocess.run(["python", "install.py", "--onnxruntime", "cuda-11.8", "--skip-conda"], check=True)

# Run the ui
if device=="cuda":
    subprocess.run(["python", "run.py", "--execution-providers", "cpu", "cuda"], check=True)
else:
    subprocess.run(["python", "run.py", "--execution-providers", "cpu"], check=True)