目录

Stable Diffusion WebUI安装

目录
  1. 下载源码

https://github.com/AUTOMATIC1111/stable-diffusion-webui

  1. 创建Python环境
1
2
conda create --prefix D:\ai\stable-diffusion-webui\runtime python=3.10
conda activate D:\ai\stable-diffusion-webui\runtime
  1. 安装torch

在阿里云镜像上下载最新的torch,torch、torchaudio、torchvision、xformers的whl包,手动pip安装。

https://hiyyq.cn/posts/20240217165828/

  1. 安装webui依赖
1
pip install -r "D:\ai\stable-diffusion-webui\requirements.txt"
  1. 修改webui-user.bat

    1
    2
    3
    4
    5
    6
    7
    8
    9
    
    @echo off
    
    set PYTHON="D:\ai\stable-diffusion-webui\runtime\python.exe"
    set GIT=D:/ai/git/bin/git.exe
    set VENV_DIR=
    set SKIP_VENV=1
    set COMMANDLINE_ARGS=--xformers
    
    call webui.bat
    
  2. 运行webui-user.bat即可