|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print('--------------远程执行---------------------') |
|
|
|
import os |
|
import subprocess |
|
|
|
|
|
|
|
def install_aria2(): |
|
try: |
|
|
|
subprocess.run(['which', 'aria2c'], check=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) |
|
print("aria2c 已安装") |
|
except subprocess.CalledProcessError: |
|
|
|
print("aria2c 未安装,正在尝试自动安装...") |
|
if 'ubuntu' in subprocess.check_output(['lsb_release', '-i']).decode().lower(): |
|
os.system('apt install aria2 -y') |
|
print("aria2c 安装成功") |
|
else: |
|
print("无法自动检测您的操作系统,请手动安装 aria2。") |
|
install_aria2() |
|
print('--------------开始---------------------') |
|
|
|
|
|
git_sd = [ |
|
'https://slink.ltd/https://github.com/2575044704/stable-diffusion-webui-localization-zh_CN2.git', |
|
'https://slink.ltd/https://github.com/AlUlkesh/stable-diffusion-webui-images-browser', |
|
] |
|
|
|
git_comfyui = [ |
|
'https://slink.ltd/https://github.com/AIGODLIKE/AIGODLIKE-COMFYUI-TRANSLATION', |
|
'https://slink.ltd/https://github.com/talesofai/comfyui-browser' |
|
] |
|
|
|
|
|
|
|
|
|
Lora_url = [ |
|
|
|
] |
|
|
|
embeddings_url = [ |
|
|
|
] |
|
|
|
VAE_url = [ |
|
|
|
] |
|
|
|
mode_url = [ |
|
|
|
] |
|
|
|
def download_aria2(file_name, download_dir, url): |
|
download_path = os.path.join(download_dir, file_name) |
|
|
|
if os.path.exists(download_path): |
|
print(f'文件 {file_name} 已存在, URL: {url}') |
|
return |
|
|
|
aria2_args = ( |
|
f'aria2c --dir {download_dir} --out {file_name} ' |
|
'--max-connection-per-server=10 --split=10 ' |
|
'--min-split-size=1M --max-overall-download-limit=0 ' |
|
'--max-download-limit=0 --continue=true {url}' |
|
) |
|
|
|
try: |
|
print(f'aria2c --dir {download_dir} --out {file_name} --max-connection-per-server=10 --split=10 --min-split-size=1M --max-overall-download-limit=0 --max-download-limit=0 --continue=true {url}') |
|
os.system(f'aria2c --dir {download_dir} --out {file_name} --max-connection-per-server=10 --split=10 --min-split-size=1M --max-overall-download-limit=0 --max-download-limit=0 --continue=true {url}') |
|
|
|
print(f'已成功下载: {file_name}') |
|
except Exception as e: |
|
print(f'下载 {url} 失败: {e}') |
|
|
|
def download_Lora(file_urls, download_dir='/tmp/code/sd/stable-diffusion-webui/models/Lora'): |
|
""" |
|
下载文件到指定目录,并支持替换文件名。如果文件已存在,则不进行下载。 |
|
|
|
参数: |
|
file_urls (list): 包含文件名和下载 URL 的列表,格式为 ['文件名:下载URL', ...] |
|
download_dir (str): 下载文件的目标目录 |
|
""" |
|
|
|
os.makedirs(download_dir, exist_ok=True) |
|
|
|
for file_url in file_urls: |
|
try: |
|
file_name, url = file_url.split(':', 1) |
|
download_aria2(file_name, download_dir, url) |
|
except ValueError: |
|
print(f'无效的文件 URL 格式: {file_url}') |
|
def download_embeddings(file_urls, download_dir='/tmp/code/sd/stable-diffusion-webui/embeddings'): |
|
os.makedirs(download_dir, exist_ok=True) |
|
for file_url in file_urls: |
|
try: |
|
file_name, url = file_url.split(':', 1) |
|
download_aria2(file_name, download_dir, url) |
|
except ValueError: |
|
print(f'无效的文件 URL 格式: {file_url}') |
|
def download_VAE(file_urls, download_dir='/tmp/code/sd/stable-diffusion-webui/models/VAE'): |
|
os.makedirs(download_dir, exist_ok=True) |
|
for file_url in file_urls: |
|
try: |
|
file_name, url = file_url.split(':', 1) |
|
download_aria2(file_name, download_dir, url) |
|
except ValueError: |
|
print(f'无效的文件 URL 格式: {file_url}') |
|
def download_mode(file_urls, download_dir='/tmp/code/sd/stable-diffusion-webui/models/Stable-diffusion'): |
|
os.makedirs(download_dir, exist_ok=True) |
|
for file_url in file_urls: |
|
try: |
|
file_name, url = file_url.split(':', 1) |
|
download_aria2(file_name, download_dir, url) |
|
except ValueError: |
|
print(f'无效的文件 URL 格式: {file_url}') |
|
def clone_repos_sd(repo_urls, clone_dir='/tmp/code/sd/stable-diffusion-webui/extensions'): |
|
""" |
|
克隆 GitHub 仓库到指定目录 |
|
参数: |
|
repo_urls (list): GitHub 仓库 URL 列表 |
|
clone_dir (str): 克隆仓库的目标目录 |
|
""" |
|
|
|
os.makedirs(clone_dir, exist_ok=True, mode=0o755) |
|
for repo_url in repo_urls: |
|
try: |
|
repo_name = repo_url.rstrip('/').split('/')[-1] |
|
clone_path = os.path.join(clone_dir, repo_name) |
|
if os.path.exists(clone_path): |
|
print(f'仓库 {repo_name} 已存在, URL: {repo_url}') |
|
continue |
|
os.system(f'git clone {repo_url} {clone_path}') |
|
print(f'已成功克隆仓库: {repo_name}') |
|
except Exception as e: |
|
print(f'克隆 {repo_url} 失败: {e}') |
|
def clone_repos_comfyui(repo_urls, clone_dir='/tmp/code/sd/ComfyUI/custom_nodes'): |
|
os.makedirs(clone_dir, exist_ok=True, mode=0o755) |
|
for repo_url in repo_urls: |
|
try: |
|
repo_name = repo_url.rstrip('/').split('/')[-1] |
|
clone_path = os.path.join(clone_dir, repo_name) |
|
if os.path.exists(clone_path): |
|
print(f'仓库 {repo_name} 已存在, URL: {repo_url}') |
|
continue |
|
os.system(f'git clone {repo_url} {clone_path}') |
|
print(f'已成功克隆仓库: {repo_name}') |
|
except Exception as e: |
|
print(f'克隆 {repo_url} 失败: {e}') |
|
|
|
clone_repos_sd(git_sd) |
|
clone_repos_comfyui(git_comfyui) |
|
download_Lora(Lora_url) |
|
download_embeddings(embeddings_url) |
|
download_VAE(VAE_url) |
|
download_mode(mode_url) |
|
|
|
|
|
|
|
|