Spaces:
Paused
Paused
update met chatgpt hulp
Browse files
app.py
CHANGED
@@ -1,17 +1,36 @@
|
|
1 |
import os
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
os.system(f"git lfs install")
|
6 |
os.system(f"git reset --hard")
|
7 |
-
os.system(f"sed -i -e '/demo:/r /home/user/app/header_patch_v2.py'
|
8 |
-
os.system(f"sed -i -e '253,258d'
|
9 |
-
os.system(f"sed -i -e '186,228d'
|
10 |
-
os.system(f"sed -i -e '171,178d'
|
11 |
-
os.system(f"sed -i -e '108,113d'
|
12 |
-
os.system(f"sed -i -e '225,227d'
|
13 |
-
os.system(f"sed -i -e '214,217d'
|
14 |
-
os.system(f"rm -rfv
|
15 |
-
os.system(f"aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/counterfeit-xl/resolve/main/counterfeitxl_v10.safetensors -d
|
16 |
# os.system(f"python launch.py --api --cors-allow-origins=* --xformers --theme dark --gradio-queue --ui-settings-file /home/user/app/shared-config_v2.json --ui-config-file /home/user/app/shared-ui-config_v2.json")
|
17 |
-
os.system(f"python launch.py --api --cors-allow-origins=* --theme dark --gradio-queue --ui-settings-file /home/user/app/shared-config_v2.json --ui-config-file /home/user/app/shared-ui-config_v2.json")
|
|
|
|
1 |
import os
|
2 |
+
|
3 |
+
# Initial clone
|
4 |
+
initial_repo_path = "/home/user/app/stable-diffusion-webui"
|
5 |
+
initial_repo_url = "https://github.com/camenduru/stable-diffusion-webui"
|
6 |
+
initial_branch = "v2.6"
|
7 |
+
os.chdir("/home/user/app")
|
8 |
+
os.system(f"git clone -b {initial_branch} {initial_repo_url} {initial_repo_path}")
|
9 |
+
|
10 |
+
# Change directory to the cloned repository
|
11 |
+
os.chdir(initial_repo_path)
|
12 |
+
|
13 |
+
# Perform a git pull to update the repository
|
14 |
+
os.system("git pull")
|
15 |
+
|
16 |
+
# Clone the Controlnet extension
|
17 |
+
controlnet_repo_url = "https://github.com/Mikubill/sd-webui-controlnet"
|
18 |
+
os.system(f"git clone {controlnet_repo_url} {initial_repo_path}/controlnet")
|
19 |
+
|
20 |
+
# Continue with the rest of your setup...
|
21 |
+
os.chdir(initial_repo_path)
|
22 |
+
|
23 |
os.system(f"git lfs install")
|
24 |
os.system(f"git reset --hard")
|
25 |
+
os.system(f"sed -i -e '/demo:/r /home/user/app/header_patch_v2.py' modules/ui.py")
|
26 |
+
os.system(f"sed -i -e '253,258d' modules/ui_settings.py")
|
27 |
+
os.system(f"sed -i -e '186,228d' modules/ui_settings.py")
|
28 |
+
os.system(f"sed -i -e '171,178d' modules/ui_settings.py")
|
29 |
+
os.system(f"sed -i -e '108,113d' modules/ui_settings.py")
|
30 |
+
os.system(f"sed -i -e '225,227d' modules/ui_loadsave.py")
|
31 |
+
os.system(f"sed -i -e '214,217d' modules/ui_loadsave.py")
|
32 |
+
os.system(f"rm -rfv scripts/")
|
33 |
+
os.system(f"aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/counterfeit-xl/resolve/main/counterfeitxl_v10.safetensors -d models/Stable-diffusion -o counterfeitxl_v10.safetensors")
|
34 |
# os.system(f"python launch.py --api --cors-allow-origins=* --xformers --theme dark --gradio-queue --ui-settings-file /home/user/app/shared-config_v2.json --ui-config-file /home/user/app/shared-ui-config_v2.json")
|
35 |
+
os.system(f"python launch.py --api --cors-allow-origins=* --theme dark --gradio-queue --ui-settings-file /home/user/app/shared-config_v2.json --ui-config-file /home/user/app/shared-ui-config_v2.json")
|
36 |
+
This script first performs the initial clone of the stable-diffusion-webui repository, updates it
|