Spaces:
Running
Running
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
|
| 3 |
+
os.system("git clone https://github.com/facefusion/facefusion.git")
|
| 4 |
+
|
| 5 |
+
os.chdir("facefusion")
|
| 6 |
+
|
| 7 |
+
os.system("pip install -r requirements.txt")
|
| 8 |
+
os.system("pip install onnxruntime")
|
| 9 |
+
|
| 10 |
+
os.system("python facefusion.py run")
|