Stable Diffusion WebUI 踩坑记录
Posted 人类观察所主任
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Stable Diffusion WebUI 踩坑记录相关的知识,希望对你有一定的参考价值。
文章目录
WIndows 和 Mac 基本上遇到的问题很像,主要是解决「网络」问题。
install Homebrew
# 官方教程
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# 金牛肖马
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
install python 3.10
暂时不支持 3.11 版本
brew install python@3.10
如果电脑存在多个 python 版本,最好在 .bash_profile 里面 alias python=pythoon3.10 一下
clone stable diffusion web
git clone https://gitcode.net/mirrors/AUTOMATIC1111/stable-diffusion-webui.git
设置 pip 国内源
https://blog.csdn.net/weixin_47139649/article/details/109135065
临时: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple
永久: ~/.pip/pip.conf
[global]
index-url=https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com
install
sh webui.sh
如果 torch 安装有问题可以这样安装
./venv/bin/pip3 install torch torchvision torchaudio
可以修改 launch.py
里面的 run_pip
方法,增加 -i 使用国内源
Install GFPGAN 卡主问题
https://blog.csdn.net/weixin_40735291/article/details/129153398
mkdir venv/Scripts
cd venv/Scripts
git clone https://gitcode.net/mirrors/TencentARC/GFPGAN.git
cd venv/Scripts/GFPGAN
../../bin/python -m pip install basicsr facexlib -i https://pypi.tuna.tsinghua.edu.cn/simple
../../bin/python -m pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
../../bin/python setup.py develop
Taming-transformers 卡住问题
可以使用 https://gitee.com/rexiyz/taming-transformers.git 替换,放到
repositories 目录下
其他疑难问题
https://blog.csdn.net/weixin_43732022/article/details/129336297?utm_medium=distribute.pc_relevant.none-task-blog-2defaultbaidujs_baidulandingword~default-0-129336297-blog-121973403.pc_relevant_aa&spm=1001.2101.3001.4242.1&utm_relevant_index=3
stable-diffusion-webui的安装教程 ubuntu
自动安装
- 先clone代码:
git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui
- 要在不创建虚拟环境的情况下通过 pip 安装所需的包,运行:
python launch.py
手动安装
手动安装虽有些过时,但在自动安装遇到问题的时候只能用手动安装了,我的自动安装就偶尔遇到git clone超时的问题。
- 安装支持CUDA的torch
pip install torch --extra-index-url https://download.pytorch.org/whl/cu113
- 检查一下torch是否支持gpu
python -c "import torch; print(torch.cuda.is_available())"
- 克隆webui的代码
git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
cd stable-diffusion-webui
- 克隆SD和CodeFormer的储存库
mkdir repositories
git clone https://github.com/CompVis/stable-diffusion.git repositories/stable-diffusion
git clone https://github.com/CompVis/taming-transformers.git repositories/taming-transformers
git clone https://github.com/sczhou/CodeFormer.git repositories/CodeFormer
git clone https://github.com/salesforce/BLIP.git repositories/BLIP
- 安装SD所需的库
pip install transformers==4.19.2 diffusers invisible-watermark --prefer-binary
- 安装k-diffusion
pip install git+https://github.com/crowsonkb/k-diffusion.git --prefer-binary
- (可选)安装GFPGAN(面部修复)
pip install git+https://github.com/TencentARC/GFPGAN.git --prefer-binary
- (可选)安装CodeFormer所需的库(面部修复)
pip install -r repositories/CodeFormer/requirements.txt --prefer-binary
- 安装webui所需的库
pip install -r requirements.txt --prefer-binary
- 更新numpy到最新版本
pip install -U numpy --prefer-binary
- 把SD的模型放到webui的models文件夹中
安装完以上步骤,打开webui:
python webui.py
碰到的问题及解决方案:
resolved_obj = getattr(resolved_obj, attr_name)
AttributeError: module 'open_clip' has no attribute 'transformer'
如果碰到open_clip no transformer的问题
解决方案:
从源码安装open_clip:
pip install git+https://github.com/mlfoundations/open_clip.git --prefer-binary
以上是关于Stable Diffusion WebUI 踩坑记录的主要内容,如果未能解决你的问题,请参考以下文章
stable-diffusion-webui的安装教程 ubuntu
AI绘画stable-diffusion-webui+ChilloutMix云部署
AI画图_stable-diffusion-webui安装使用指南