Stable Diffusion WebUI 安装

Mac 配置

类别 配置
机型 Macbook pro m2
核总数 12 核中央处理器、38 核图形处理器和 16 核神经网络引擎
内存 64 G
系统 Sonoma

安装 Homebrew

打开终端执行(使用了国内镜像源安装)

/bin/bash -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

查看是否安装完成

brew -v

在这里插入图片描述

安装环境依赖

brew install cmake protobuf rust [email protected] git wget

安装 Conda

  • 安装
    从 Anaconda 官网 下载安装包
    Stable Diffusion WebUI 安装_第1张图片
    下载直接双击一步步安装即可
  • 查看是否安装成功
conda --version

在这里插入图片描述

创建环境

打开终端,执行

conda create --name sdwebui python=3.10.6

进入环境

conda activate sdwebui

运行 Stable Diffusino WebUI

克隆 stable-diffusion-webui

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

如果没有代理,需要修改 github 源,避免运行时候,一直拉不下来。需修改 stable-diffusion-webui/modules/launch_utils.py 文件,将 https://github.com/* 替换成 https://ghproxy.com/https://github.com/*
运行启动

cd stable-diffusion-webui
./webui.sh

Stable Diffusion WebUI 安装_第2张图片

安装汉化包

安装扩展
Stable Diffusion WebUI 安装_第3张图片
重启应用Stable Diffusion WebUI 安装_第4张图片
到设置里配置中文汉化并重启
Stable Diffusion WebUI 安装_第5张图片

FAQ

启动过程有报警,但 mac 本来就没有 cuda,正常,不影响使用,忽略
在这里插入图片描述

你可能感兴趣的:(AI,绘画,stable,diffusion,python)