File size: 12,938 Bytes
394128f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d1738e8
394128f
8de0048
394128f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cb386c2
 
 
394128f
 
 
 
 
 
 
 
 
 
5fdddc4
394128f
d1738e8
5fdddc4
d1738e8
394128f
5fdddc4
394128f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d644580
 
 
394128f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7bb0e27
4e7d47b
7bb0e27
394128f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
import random
import string
import subprocess
import sys
import os
import concurrent.futures
import time
import shutil

params = {}
wi_list = ["webui.bat", "webui.sh", "webui-macos-env.sh", "webui-user.bat", "webui-user.sh"]
for arg in sys.argv[1:]:
    if arg.startswith('--'):
        key_value = arg[len('--'):].split('=')
        if len(key_value) == 2:
            key, value = key_value
            params[key] = value

subprocess.run(f'cd {params["dir"]}/', shell=True)
if params["ui"] == "anapnoe手机端完美适配":
    subprocess.run(f'git clone https://github.com/anapnoe/stable-diffusion-webui {params["dir"]}', shell=True)
elif params["ui"] == "AUTOMATIC1111原版v1.6.0[sdxl]":
    subprocess.run(
        f'git clone  -b v1.6.0 https://github.com/s4afa451dgf415f/sdwi {params["dir"]}', shell=True)
else:
    subprocess.run(
        f'git clone -b v1.5.1 https://github.com/s4afa451dgf415f/sdwi {params["dir"]}', shell=True)
for wi_file in wi_list:
    try:
        os.remove(f"{params['dir']}/{wi_file}")
    except FileNotFoundError:
        print(f"文件 '{wi_file}' 不存在")
try:
    os.rename(f"{params['dir']}/webui.py", f"{params['dir']}/wi.py")
except Exception as e:
    print(f"文件命名失败: {str(e)}")

file_path = f'{params["dir"]}/modules/launch_utils.py'

try:
    with open(file_path, 'r') as file:
        content = file.read()
        content = content.replace('import webui', 'import wi')
        content = content.replace('webui.webui', 'wi.webui')
        modified_content = content.replace('webui.api_only','wi.api_only')
        file.close()

    # 将修改后的内容写回到原文件
    with open(file_path, 'w') as file:
        file.write(modified_content)
        file.close()

except FileNotFoundError:
    print(f"文件 '{file_path}' 不存在")
except Exception as e:
    print(f"修改文件 '{file_path}' 时出错: {str(e)}")


checkpoint_url = {
    "Dark_sushi_mix.safetensors": "https://huggingface.co/mdl-mirror/dark-sushi-mix/resolve/main/darkSushiMixMix_brighter.safetensors",
    "AnythingV5V3_v5PrtRE.safetensors": "https://huggingface.co/ckpt/anything-v5.0/resolve/main/AnythingV5V3_v5PrtRE.safetensors",
    "chilloutmix_NiPrunedFp16Fix.safetensors": "https://huggingface.co/naonovn/chilloutmix_NiPrunedFp32Fix/resolve/main/chilloutmix_NiPrunedFp32Fix.safetensors",
    "rpg_V4.safetensors": "https://huggingface.co/Anashel/rpg/resolve/main/RPG-V4-Model-Download/RPG-v4.safetensors",
    "ProtoGen_X5.8-pruned-fp16.safetensors": "https://huggingface.co/darkstorm2150/Protogen_x5.8_Official_Release/resolve/main/ProtoGen_X5.8-pruned-fp16.safetensors",
    "none": "",
}


def run_git_download():
    start_time = time.time()
    # subprocess.run(
    #     f'git clone https://github.com/s4afa451dgf415f/sd-wi-aio {params["dir"]}/extensions/prompt-aio',
    #     shell=True)
    # subprocess.run(
    #     f'git clone https://github.com/Mikubill/sd-webui-controlnet {params["dir"]}/extensions/sd-wi-controlnet',
    #     shell=True)
    subprocess.run(
        f'git clone https://github.com/dtlnor/stable-diffusion-webui-localization-zh_CN {params["dir"]}/extensions/stable-diffusion-wi-localization-zh_CN',
        shell=True)
    # subprocess.run(
    #     f'git clone https://github.com/fkunn1326/openpose-editor {params["dir"]}/extensions/openpose-editor',
    #     shell=True)
    subprocess.run(
        f'git clone https://github.com/s4afa451dgf415f/sd-wi-tagcomplet {params["dir"]}/extensions/a1111-sd-wi-tagcomplete',
        shell=True)
    subprocess.run(
        f'git clone https://github.com/picobyte/stable-diffusion-webui-wd14-tagger {params["dir"]}/extensions/stable-diffusion-wi-wd14-tagger',
        shell=True)
    subprocess.run(
        f'git clone https://github.com/Coyote-A/ultimate-upscale-for-automatic1111 {params["dir"]}/extensions/ultimate-upscale',
        shell=True)
    subprocess.run(
        f'git clone https://github.com/pkuliyi2015/multidiffusion-upscaler-for-automatic1111 {params["dir"]}/extensions/multidiffusion-upscaler',
        shell=True)
    # subprocess.run(
    #     f'git clone https://github.com/nonnonstop/sd-webui-3d-open-pose-editor {params["dir"]}/extensions/sd-wi-3d-open-pose-editor',
    #     shell=True)
    subprocess.run(
        f'git clone https://github.com/hako-mikan/sd-webui-lora-block-weight {params["dir"]}/extensions/sd-wi-lora-block-weight',
        shell=True)
    end_time = time.time()
    print("已克隆git耗时:", end_time - start_time, "秒")
def run_aria2c_download():
    start_time = time.time()
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M {checkpoint_url[params["model"]]} -d {params["dir"]}/models/Stable-diffusion -o {params["model"]}',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_ip2p_fp16.safetensors -d {params["dir"]}/models/ControlNet -o control_v11e_sd15_ip2p.safetensors',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11f1p_sd15_depth_fp16.safetensors -d {params["dir"]}/models/ControlNet -o control_v11f1p_sd15_depth.safetensors',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_canny_fp16.safetensors -d {params["dir"]}/models/ControlNet -o control_v11p_sd15_canny.safetensors',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_inpaint_fp16.safetensors -d {params["dir"]}/models/ControlNet -o control_v11p_sd15_inpaint.safetensors',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_lineart_fp16.safetensors -d {params["dir"]}/models/ControlNet -o control_v11f1p_sd15_depth.safetensors',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_mlsd_fp16.safetensors -d {params["dir"]}/models/ControlNet -o control_v11p_sd15_mlsd.safetensors',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_normalbae_fp16.safetensors -d {params["dir"]}/models/ControlNet -o control_v11p_sd15_normalbae.safetensors',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_openpose_fp16.safetensors -d {params["dir"]}/models/ControlNet -o control_v11p_sd15_openpose.safetensors',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_scribble_fp16.safetensors -d {params["dir"]}/models/ControlNet -o control_v11p_sd15_scribble.safetensors',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_seg_fp16.safetensors -d {params["dir"]}/models/ControlNet -o control_v11p_sd15_seg.safetensors',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_softedge_fp16.safetensors -d {params["dir"]}/models/ControlNet -o control_v11p_sd15_softedge.safetensors',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15s2_lineart_anime_fp16.safetensors -d {params["dir"]}/models/ControlNet -o control_v11p_sd15s2_lineart_anime.safetensors',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11f1e_sd15_tile_fp16.safetensors -d {params["dir"]}/models/ControlNet -o control_v11f1e_sd15_tile_fp16.safetensors',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lokCX/4x-Ultrasharp/resolve/main/4x-UltraSharp.pth -d {params["dir"]}/models/ESRGAN/ -o 4x-UltraSharp.pth',
        shell=True)
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/datasets/daasd/sd_backup/resolve/main/ZH.csv -d {params["dir"]}/extensions/a1111-sd-wi-tagcomplete/tags -o ZH.csv',
        shell=True)
    end_time = time.time()
    print("aria2c完成下载耗时:", end_time - start_time, "秒")


def curl_download():
    start_time = time.time()
    subprocess.run(
        f"curl -Lo '{params['dir']}/models/VAE/vae-ft-mse-840000-ema-pruned.safetensors' https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.safetensors",
        shell=True)
    subprocess.run(
        f"curl -Lo '{params['dir']}/models/VAE/kl-f8-anime2.ckpt' https://huggingface.co/hakurei/waifu-diffusion-v1-4/resolve/4c4f05104055c029ad577c18ac176462f0d1d7c1/vae/kl-f8-anime2.ckpt",
        shell=True)
    subprocess.run(
        f"curl -Lo '{params['dir']}/models/VAE/animevae.pt' https://huggingface.co/swl-models/animvae/resolve/main/animevae.pt",
        shell=True)
    end_time = time.time()
    print("curl完成下载耗时:", end_time - start_time, "秒")


def wget_download():
    start_time = time.time()
    subprocess.run("apt install libunwind8-dev -yqq", shell=True)
    os.environ["LD_PRELOAD"] = "libtcmalloc.so.4"
    os.environ["TF_CPP_MIN_LOG_LEVEL"] = "3"
    subprocess.run("sudo apt-get install sox ffmpeg libcairo2 libcairo2-dev", shell=True)
    end_time = time.time()
    print("wget完成下载耗时:", end_time - start_time, "秒")


def pip_download():
    start_time = time.time()
    # subprocess.run("pip install xformers xformers==0.0.20", shell=True)
    subprocess.run("pip install xformers==0.0.22.post4 --index-url https://download.pytorch.org/whl/cu118", shell=True)
    # subprocess.run("pip install torch==2.0.1+cu118 torchvision==0.15.2+cu118 torchaudio==2.0.2 torchtext==0.15.2+cpu torchdata==0.6.1 --index-url https://download.pytorch.org/whl/cu118", shell=True)
    end_time = time.time()
    print("pip完成下载耗时:", end_time - start_time, "秒")

executor = concurrent.futures.ThreadPoolExecutor(max_workers=5)
task1 = executor.submit(run_git_download)
task2 = executor.submit(run_aria2c_download)
task3 = executor.submit(curl_download)
task4 = executor.submit(wget_download)
task5 = executor.submit(pip_download)
concurrent.futures.wait([ task1,task3, task4, task5])

if os.path.exists(f'{params["dir"]}/embeddings'):
    shutil.rmtree(f'{params["dir"]}/embeddings')
subprocess.run(f'git clone https://huggingface.co/nolanaatama/embeddings {params["dir"]}/embeddings', shell=True)

# 个人插件从云盘的extensions文件夹与VAE文件夹加载
if params["extensions"] == "True":
    if os.path.exists("/content/drive/MyDrive/extensions"):
        subprocess.run(f'rsync -a /content/drive/MyDrive/extensions/* {params["dir"]}/extensions', shell=True)
        print('已加载云盘里的插件')
    if os.path.exists("/content/drive/MyDrive/VAE"):
        subprocess.run(f'rsync -a /content/drive/MyDrive/VAE/* {params["dir"]}/models/VAE', shell=True)
        print('已加载云盘里的VAE')
    if os.path.exists("/content/drive/MyDrive/embeddings"):
        subprocess.run(f'rsync -a /content/drive/MyDrive/embeddings/* {params["dir"]}/embeddings', shell=True)
        print('已加载云盘里的embeddings')
    if os.path.exists("/content/drive/MyDrive/lora"):
        subprocess.run(f'mkdir -p {params["dir"]}/models/Lora', shell=True)
        subprocess.run(f'rsync -a /content/drive/MyDrive/lora/* {params["dir"]}/models/Lora', shell=True)
        print('已加载云盘里的lora')
    if os.path.exists("/content/drive/MyDrive/checkpoint"):
        subprocess.run(f'rsync -a /content/drive/MyDrive/checkpoint/* {params["dir"]}/models/Stable-diffusion',
                       shell=True)
        print('已加载云盘里的Stable-diffusion')