基础环境
- 安装 Python 3.10.6(较新版本的 Python 不支持 torch),选中“Add Python to PATH”
- 更新显卡驱动到最新
- nvidia-smi,找到对应的 CUDA 版本号
nvidia-smi
- 这里我的版本号是 12.2,下载地址
- 安装 Git
- clone 并运行
git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.gi
运行 webui-user.bat
- 建议使用官方或者阿里云的源
pip config set global.index-url https://pypi.org/simple/
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
启动
解决 xformers 模块找不到
no module 'xformers'. Processing without...
No module 'xformers'. Proceeding without it.
进入该目录下
运行
pip install --force-reinstall --no-deps --pre xformers
修改COMMANDLINE_ARGS
代码,如果你启动后是 0.0.0.0
就去掉--listen
COMMANDLINE_ARGS = --xformers --opt-sdp-no-mem-attention --listen --enable-insecure-extension-access
重新启动