Nick088 commited on
Commit
0410452
1 Parent(s): 3e49366

Fix a typo “cuda” when it should be “conda”

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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-cuda"], check=True)
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)