{% extends "base.html" %} {% block title %}资源安装助手 · {{ brand.home_title }}{% endblock %} {% block topbar %}{% endblock %} {% block content %}

运行资源状态

程序运行需要的公开资源(运行环境 / ComfyUI / 模型)。缺哪一项就补哪一项,不必重复下载。

{% for key, st in resource_local.items() %} {% endfor %}
目录状态文件数
{{ key }} {% if st.exists %}已就位{% else %}缺失{% endif %} {{ st.files }}

资源清单

清单由云端下发(管理员在下载页维护)。网盘链接点「打开网盘」手动下载;http(s) 直链可点「下载到本机」由软件断点续传下载(中断后可继续)。

{% if not resource_specs %}
云端未配置资源清单:请到 下载页 查看,或联系管理员。
{% else %} {% for it in resource_specs %} {% endfor %}
资源说明大小目标目录操作
{{ it.name }} {{ it.desc }}{% if it.code %}(提取码 {{ it.code }}){% endif %} {{ it.size or '—' }} {{ it.target or '—' }} {% if it.url %} 打开网盘 {% if it.url.startswith('http') and ('.zip' in it.url or '.7z' in it.url or '.tar' in it.url or it.target) %} {% endif %} {% else %} 待管理员填写 {% endif %}
{% endif %}

环境自检

显卡 / 显存 / 驱动 / 磁盘 / ComfyUI 一屏结论,装完资源后点一次确认环境可用。

{% endblock %}