跳转至内容

AI 艺术生成手册/如何安装 Stable Diffusion/Auto1111

来自维基教科书,开放世界中的开放书籍

Windows darkblue 2012 安装 Automatic1111 的步骤 (2023 年 7 月更新)

[编辑 | 编辑源代码]

(1) 确保您的 PC 满足基本要求

(2) 下载 Python 3.10.10 ← 链接在此

(3) 在安装向导的第一页,请务必选中 将 Python 3.10 添加到 PATH

(4) 按常规继续安装

(5) 下载 Git 版本控制 ← 链接在此

(6) 使用默认设置安装

(7) 在您想要的位置创建文件夹 (确保您具有访问权限)

(8) 在地址栏中,键入 cmd

(9) 命令提示符窗口将提示您输入 git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui

(10) 等待几分钟,下载 Auto1111 文件

(11) 点击安装的 stable-diffusion-webui 目录内的 webui-user.bat

(12) 等待最多半小时,完成下载和安装所需的库、文件和 SD 1.5 模型。

(13) 安装成功后,应显示类似的屏幕

[编辑 | 编辑源代码]

(14) 点击下载 your_installed_directory\stable-diffusion-webui\models\Stable-diffusion 中的两个模型

SDXL 1.0 模型基础 (用于 text2img) (注意:点击 Ic file download 48pxsd_xl_refiner_1.0.safetensors 旁边)

SDXL 1.0 优化器基础(用于 img2img) (注意:点击 Ic file download 48pxsd_xl_base_1.0.safetensors 旁边)

(15) 下载 VAE 模型

SDXL1.0 VAE (注意:点击 Ic file download 48pxsdxl_vae.safetensors 旁边)


(16) 在 Webui 中启用 VAE 工具栏

** 可选

(16) 安装完成后,您可以按照以下步骤自定义启动器。

C:\Yout_Installed_Locations\StableDiffusion\stable-diffusion-webui\webui-user.bat

@echo off

echo A111111111111111111111111111111111111111111A

echo 1         Stable-Diffusion WebUI           1

echo 1          By : Automatic1111              1

echo 1    (and countless other contributors)    1

echo 1                  2023                    1

echo 1                                          1

echo A111111111111111111111111111111111111111111A

echo     Press following keys to proceed

echo "1" - Proceed as normal

echo "2" - !Update to the latest version Stable Diffusion Web-UI

echo       Make sure the update does not break the existing Stable Diffusion

CHOICE /C:12

IF ERRORLEVEL 2 GOTO GITPULL

IF ERRORLEVEL 1 GOTO WEBUI

:GITPULL

git pull

GOTO WEBUI

:WEBUI

set PYTHON=

set GIT=

set VENV_DIR=

set COMMANDLINE_ARGS= --opt-sdp-attention

call webui.bat

pause

GOTO END

GOTO END

:END
华夏公益教科书