mac 快速安装stable diffusion webui

1、brew安装

如果未安装 Homebrew,按照https://brew.sh上的说明进行安装

可以切换brew源(如下) 或者 用梯子

复制代码
#清华源
# 修改 brew.git
git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
# 修改 homebrew-core.git
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
# 修改 homebrew-cask.git(可选)
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git
# 设置 bottles 镜像(zsh)
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.zshrc
source ~/.zshrc
# 设置 bottles 镜像(bash)
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile
# 刷新源
brew update

2、依赖包安装

打开终端窗口运行brew install cmake protobuf rust python@3.10 git wget

3、下载安装包

下载安装包
stable-diffusion-webui_mac.zip,添加了相关插件,解压文件,文件夹名称为stable-diffusion-webui_mac

4、启动

右键打开命令行终端,自带终端的或者ITrems都行。 cd stable-diffusion-webui_mac ./webui.sh

首次会慢一些。启动之后,会自动打开页面 http://127.0.0.1:7860/


stable-diffusion-webui_mac/webui-user.sh

启动参数可以根据mac实际情况调整,如果不清楚也可以让大模型生成符合自己配置的启动参数

复制代码
# --skip-torch-cuda-test:跳过 PyTorch CUDA 测试(M4 使用 Metal 而非 CUDA)
# --device mps:启用 Metal Performance Shaders (MPS) 加速
# --no-half-vae:禁用 VAE 半精度,避免绿屏并提高图像质量
# --opt-sdp-attention:使用更高效的 SDP 注意力算法替代 FlashAttention
# --precision full:VAE 使用完整精度 (float32)
# --upcast-sampling:采样过程使用更高精度,减少噪点和 artifacts
# --always-batch-cond-uncond:优化批处理性能,提高吞吐量
# --max-batch-count 10:最大批处理数量
# --listen 0.0.0.0:允许远程设备通过 IP 访问 WebUI
# --enable-insecure-extension-access:允许加载第三方扩展
# --styles-file styles.csv:预加载样式文件,加快样式切换
# --deepdanbooru:启用 DeepDanbooru 标签识别,它可以自动为图像生成详细的标签(tags),这些标签可用于反向提示(Negative Prompt)或生成新图像时的参考
#--disable-safe-unpickle是一个命令行参数,允许你绕过这种安全检查来读取文件。然而,使用这个参数是有风险的,因为它会关闭对恶意文件的防护。只有在你绝对确定你所使用的模型文件是安全可靠的情况下,才应该使用 --disable-safe-unpickle 参数。

#export PYTORCH_MPS_HIGH_WATERMARK_RATIO=0.9
export COMMANDLINE_ARGS="--skip-torch-cuda-test --device mps --no-half-vae  --opt-sdp-attention --precision full --upcast-sampling --always-batch-cond-uncond --max-batch-count 10  --enable-insecure-extension-access  --styles-file styles.csv --deepdanbooru"

5、使用

示例提示词: 正向提示词:female sword flight,ojousama,oval face,in winter,

反向提示词:cross-eyed,bad feet,extra legs,malformed hands,mutated hands and

fingers,bad hands,missing fingers,fused fingers,too many

fingers,poorly drawn hands,mutated hands,extra arms,extra

limb,disconnected limbs,floating limbs,poorly drawn face,skin

blemishes,skin spots,acnes,missing limb,malformed

limbs,disfigured,(fat:1.2),ugly,long body,bad

body,mutation,mutated,deformed,long neck,

如果要调整设置,请点击设置菜单栏进行调整,如vae展现,step设置等;设置完记得保存且重载。


复制代码
### **附加说明**  
1. **项目许可证**:本文衍生自 AGPL-3.0 开源项目,修改或再发布需遵守相同条款。  
2. **模型权重**:Stable Diffusion 模型需单独遵守 [CreativeML OpenRAIL-M](https://huggingface.co/spaces/CompVis/stable-diffusion-license) 许可证。  
3. **第三方组件**:部分功能依赖 GFPGAN、RealESRGAN 等组件,其许可证可能不同,请查阅 [项目 Licenses 文件](https://github.com/AUTOMATIC1111/stable-diffusion-webui/blob/master/html/licenses.html)。  
相关推荐
EXI-小洲15 小时前
MacOS IDEA将本地项目代码上传至SVN空仓库
macos·svn·intellij-idea
weixin_531670892 天前
Interlude起来:久坐提醒软件为什么需要登录?有没有完全本地运行的Mac休息提醒软件?
人工智能·macos·swift
coding4u2 天前
Mac 多桌面(Spaces)的正确用法:你的屏幕可以大三倍
macos·docker·计算机外设·文件管理·策略模式
Eric.462 天前
2026 AI 漫剧叙事可控性深度工程:解决逻辑崩坏、镜头错乱、道具漂移的高阶落地方案
人工智能·stable diffusion·comfyui·ai漫剧
Eric.463 天前
用 Stable Diffusion 做 AI 漫剧:从静态分镜到动态漫视频的完整工程链路
人工智能·深度学习·stable diffusion·音视频·ai漫剧
weixin_531670893 天前
Interlude起来:Swift原生Mac软件有什么优势?原生Mac应用和Electron应用有什么区别?
人工智能·macos·mac·swift
k4m7v2pz3 天前
Swift Package Manager 在 macOS 26 上的三个编译错误排查指南
macos·spm·ai编程·xcode·swift·命令行工具
zhonyu鱼3 天前
Pot 翻译:开源免费的跨平台划词翻译与 OCR 工具
windows·macos·开源·ocr·开源软件
杜子麟3 天前
Android studio模拟器离线安装
android·macos·android studio
Eric.463 天前
AI漫剧量产Prompt参数实操手册:Stable Diffusion+ComfyUI+OpenClaw通用复制即用配置
人工智能·深度学习·stable diffusion·prompt·ai漫剧