Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -6,10 +6,10 @@ device = "cpu"
|
|
| 6 |
print("Using CPU")
|
| 7 |
|
| 8 |
# Clone the repository
|
| 9 |
-
subprocess.run(["git", "clone", "https://github.com/
|
| 10 |
|
| 11 |
# Change directory to facefusion to run the UI
|
| 12 |
-
os.chdir("
|
| 13 |
|
| 14 |
# Install dependencies for CPU mode
|
| 15 |
subprocess.run(["python", "install.py", "--onnxruntime", "default", "--skip-conda"], check=True)
|
|
|
|
| 6 |
print("Using CPU")
|
| 7 |
|
| 8 |
# Clone the repository
|
| 9 |
+
subprocess.run(["git", "clone", "https://github.com/sushantapaul2022-maker/Hello_World.git", "--single-branch"], check=True)
|
| 10 |
|
| 11 |
# Change directory to facefusion to run the UI
|
| 12 |
+
os.chdir("Hello_World")
|
| 13 |
|
| 14 |
# Install dependencies for CPU mode
|
| 15 |
subprocess.run(["python", "install.py", "--onnxruntime", "default", "--skip-conda"], check=True)
|