Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -150,6 +150,28 @@ DownLoad(r"https://civitai.com/api/download/models/21065",str(user_home / r"stab
|
|
150 |
DownLoad(r"https://civitai.com/api/download/models/39164",str(user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-additional-networks" / r"models"/ r"lora"),r"backlighting.safetensors")
|
151 |
#strt webui
|
152 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
print("Done\nStarting Webui...")
|
154 |
os.chdir(user_home / r"stable-diffusion-webui")
|
155 |
while True:
|
|
|
150 |
DownLoad(r"https://civitai.com/api/download/models/39164",str(user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-additional-networks" / r"models"/ r"lora"),r"backlighting.safetensors")
|
151 |
#strt webui
|
152 |
|
153 |
+
# Stable Diffusion WebUI のディレクトリを設定
|
154 |
+
webui_dir = user_home / "stable-diffusion-webui"
|
155 |
+
|
156 |
+
# 拡張機能のインストール先
|
157 |
+
extensions_dir = webui_dir / "extensions"
|
158 |
+
|
159 |
+
# 拡張機能のクローン先
|
160 |
+
fluxdev_dir = extensions_dir / "Fluxdev"
|
161 |
+
fluxschnell_dir = extensions_dir / "Fluxschnell"
|
162 |
+
|
163 |
+
# WebUI のディレクトリへ移動
|
164 |
+
os.chdir(webui_dir)
|
165 |
+
|
166 |
+
# Fluxdev のインストール
|
167 |
+
if not fluxdev_dir.exists():
|
168 |
+
os.system(f"git clone https://github.com/FluxAi/Fluxdev {fluxdev_dir}")
|
169 |
+
|
170 |
+
# Fluxschnell のインストール
|
171 |
+
if not fluxschnell_dir.exists():
|
172 |
+
os.system(f"git clone https://github.com/FluxAi/Fluxschnell {fluxschnell_dir}")
|
173 |
+
|
174 |
+
|
175 |
print("Done\nStarting Webui...")
|
176 |
os.chdir(user_home / r"stable-diffusion-webui")
|
177 |
while True:
|