Spaces:
Runtime error
Runtime error
Fix a typo “cuda” when it should be “conda”
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ subprocess.run(["git", "clone", "https://github.com/facefusion/facefusion", "--b
|
|
16 |
os.chdir("facefusion")
|
17 |
|
18 |
# installation
|
19 |
-
subprocess.run(["python", "install.py", "--onnxruntime", "cuda-11.8", "--skip-
|
20 |
|
21 |
# Run the ui
|
22 |
subprocess.run(["python", "run.py", "--execution-providers", "cpu", {"cuda" if device=="cuda" else None}], check=True)
|
|
|
16 |
os.chdir("facefusion")
|
17 |
|
18 |
# installation
|
19 |
+
subprocess.run(["python", "install.py", "--onnxruntime", "cuda-11.8", "--skip-conda"], check=True)
|
20 |
|
21 |
# Run the ui
|
22 |
subprocess.run(["python", "run.py", "--execution-providers", "cpu", {"cuda" if device=="cuda" else None}], check=True)
|