Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ subprocess.run(["git", "clone", "https://github.com/facefusion/facefusion"], che
|
|
14 |
os.chdir("facefusion")
|
15 |
|
16 |
# installation
|
17 |
-
subprocess.run(["python", "install.py"], check=True)
|
18 |
|
19 |
# Run the ui
|
20 |
-
subprocess.run(["python", "run.py", "--execution-providers", "cpu"], check=True)
|
|
|
14 |
os.chdir("facefusion")
|
15 |
|
16 |
# installation
|
17 |
+
subprocess.run(["python", "install.py", "--onnxruntime", "cuda-11.8", "--skip-venv"], check=True)
|
18 |
|
19 |
# Run the ui
|
20 |
+
subprocess.run(["python", "run.py", "--execution-providers", "cpu"], check=True)
|