File size: 276 Bytes
962014c 60e78ea 298cb83 60e78ea 298cb83 |
1 2 3 4 5 6 7 8 9 10 |
import subprocess
# Clone the repository
subprocess.run(["git", "clone", "https://github.com/facefusion/facefusion"], check=True)
subprocess.run(["cd", "facefusion"], check=True)
# Run the ui
subprocess.run(["python", "run.py", "--execution-providers", "cpu"], check=True)
|