files_cells/notebooks/en/downloading_en.ipynb
CHANGED
|
@@ -161,10 +161,10 @@
|
|
| 161 |
"# Unpacking the WebUI\n",
|
| 162 |
"if not os.path.exists(webui_path):\n",
|
| 163 |
" start_install = int(time.time())\n",
|
| 164 |
-
" print(\"⌚ Unpacking Stable Diffusion...\" if
|
| 165 |
" with capture.capture_output() as cap:\n",
|
| 166 |
" aria2_command = \"aria2c --console-log-level=error -c -x 16 -s 16 -k 1M\"\n",
|
| 167 |
-
" url = \"https://huggingface.co/NagisaNao/fast_repo/resolve/main/FULL_REPO.zip\" if
|
| 168 |
" !{aria2_command} {url} -o repo.zip\n",
|
| 169 |
"\n",
|
| 170 |
" !unzip -q -o repo.zip -d {webui_path}\n",
|
|
|
|
| 161 |
"# Unpacking the WebUI\n",
|
| 162 |
"if not os.path.exists(webui_path):\n",
|
| 163 |
" start_install = int(time.time())\n",
|
| 164 |
+
" print(\"⌚ Unpacking Stable Diffusion...\" if UI != 'Forge' else \"⌚ Unpacking Stable Diffusion (Forge)...\", end='')\n",
|
| 165 |
" with capture.capture_output() as cap:\n",
|
| 166 |
" aria2_command = \"aria2c --console-log-level=error -c -x 16 -s 16 -k 1M\"\n",
|
| 167 |
+
" url = \"https://huggingface.co/NagisaNao/fast_repo/resolve/main/FULL_REPO.zip\" if UI != 'Forge' else \"https://huggingface.co/NagisaNao/fast_repo/resolve/main/FULL_REPO_forge.zip\"\n",
|
| 168 |
" !{aria2_command} {url} -o repo.zip\n",
|
| 169 |
"\n",
|
| 170 |
" !unzip -q -o repo.zip -d {webui_path}\n",
|
files_cells/notebooks/ru/downloading_ru.ipynb
CHANGED
|
@@ -161,10 +161,10 @@
|
|
| 161 |
"# Unpacking the WebUI\n",
|
| 162 |
"if not os.path.exists(webui_path):\n",
|
| 163 |
" start_install = int(time.time())\n",
|
| 164 |
-
" print(\"⌚ Распаковка Stable Diffusion...\" if
|
| 165 |
" with capture.capture_output() as cap:\n",
|
| 166 |
" aria2_command = \"aria2c --console-log-level=error -c -x 16 -s 16 -k 1M\"\n",
|
| 167 |
-
" url = \"https://huggingface.co/NagisaNao/fast_repo/resolve/main/FULL_REPO.zip\" if
|
| 168 |
" !{aria2_command} {url} -o repo.zip\n",
|
| 169 |
"\n",
|
| 170 |
" !unzip -q -o repo.zip -d {webui_path}\n",
|
|
|
|
| 161 |
"# Unpacking the WebUI\n",
|
| 162 |
"if not os.path.exists(webui_path):\n",
|
| 163 |
" start_install = int(time.time())\n",
|
| 164 |
+
" print(\"⌚ Распаковка Stable Diffusion...\" if UI != 'Forge' else \"⌚ Распаковка Stable Diffusion (Forge)...\", end='')\n",
|
| 165 |
" with capture.capture_output() as cap:\n",
|
| 166 |
" aria2_command = \"aria2c --console-log-level=error -c -x 16 -s 16 -k 1M\"\n",
|
| 167 |
+
" url = \"https://huggingface.co/NagisaNao/fast_repo/resolve/main/FULL_REPO.zip\" if UI != 'Forge' else \"https://huggingface.co/NagisaNao/fast_repo/resolve/main/FULL_REPO_forge.zip\"\n",
|
| 168 |
" !{aria2_command} {url} -o repo.zip\n",
|
| 169 |
"\n",
|
| 170 |
" !unzip -q -o repo.zip -d {webui_path}\n",
|
files_cells/python/en/downloading_en.py
CHANGED
|
@@ -151,10 +151,10 @@ if os.path.exists(webui_path):
|
|
| 151 |
# Unpacking the WebUI
|
| 152 |
if not os.path.exists(webui_path):
|
| 153 |
start_install = int(time.time())
|
| 154 |
-
print("⌚ Unpacking Stable Diffusion..." if
|
| 155 |
with capture.capture_output() as cap:
|
| 156 |
aria2_command = "aria2c --console-log-level=error -c -x 16 -s 16 -k 1M"
|
| 157 |
-
url = "https://huggingface.co/NagisaNao/fast_repo/resolve/main/FULL_REPO.zip" if
|
| 158 |
get_ipython().system('{aria2_command} {url} -o repo.zip')
|
| 159 |
|
| 160 |
get_ipython().system('unzip -q -o repo.zip -d {webui_path}')
|
|
|
|
| 151 |
# Unpacking the WebUI
|
| 152 |
if not os.path.exists(webui_path):
|
| 153 |
start_install = int(time.time())
|
| 154 |
+
print("⌚ Unpacking Stable Diffusion..." if UI != 'Forge' else "⌚ Unpacking Stable Diffusion (Forge)...", end='')
|
| 155 |
with capture.capture_output() as cap:
|
| 156 |
aria2_command = "aria2c --console-log-level=error -c -x 16 -s 16 -k 1M"
|
| 157 |
+
url = "https://huggingface.co/NagisaNao/fast_repo/resolve/main/FULL_REPO.zip" if UI != 'Forge' else "https://huggingface.co/NagisaNao/fast_repo/resolve/main/FULL_REPO_forge.zip"
|
| 158 |
get_ipython().system('{aria2_command} {url} -o repo.zip')
|
| 159 |
|
| 160 |
get_ipython().system('unzip -q -o repo.zip -d {webui_path}')
|
files_cells/python/ru/downloading_ru.py
CHANGED
|
@@ -151,10 +151,10 @@ if os.path.exists(webui_path):
|
|
| 151 |
# Unpacking the WebUI
|
| 152 |
if not os.path.exists(webui_path):
|
| 153 |
start_install = int(time.time())
|
| 154 |
-
print("⌚ Распаковка Stable Diffusion..." if
|
| 155 |
with capture.capture_output() as cap:
|
| 156 |
aria2_command = "aria2c --console-log-level=error -c -x 16 -s 16 -k 1M"
|
| 157 |
-
url = "https://huggingface.co/NagisaNao/fast_repo/resolve/main/FULL_REPO.zip" if
|
| 158 |
get_ipython().system('{aria2_command} {url} -o repo.zip')
|
| 159 |
|
| 160 |
get_ipython().system('unzip -q -o repo.zip -d {webui_path}')
|
|
|
|
| 151 |
# Unpacking the WebUI
|
| 152 |
if not os.path.exists(webui_path):
|
| 153 |
start_install = int(time.time())
|
| 154 |
+
print("⌚ Распаковка Stable Diffusion..." if UI != 'Forge' else "⌚ Распаковка Stable Diffusion (Forge)...", end='')
|
| 155 |
with capture.capture_output() as cap:
|
| 156 |
aria2_command = "aria2c --console-log-level=error -c -x 16 -s 16 -k 1M"
|
| 157 |
+
url = "https://huggingface.co/NagisaNao/fast_repo/resolve/main/FULL_REPO.zip" if UI != 'Forge' else "https://huggingface.co/NagisaNao/fast_repo/resolve/main/FULL_REPO_forge.zip"
|
| 158 |
get_ipython().system('{aria2_command} {url} -o repo.zip')
|
| 159 |
|
| 160 |
get_ipython().system('unzip -q -o repo.zip -d {webui_path}')
|