在当前项目目录下,执行webui-user.bat
假如出现报错RuntimeError: Torch is not able to use GPU; add --skip-torch-cuda-test to COMMANDLINE_ARGS variable to disable this check
就在webui-user.bat文件里 第11行 加上
set COMMANDLINE_ARGS=--skip-torch-cuda-test
复制代码
假如出现报错stderr: ERROR: Ignored the following versions that require a different python version: 1.6.2 Requires-Python >=3.7,< 3.10; 1.6.3 Requires-Python >=3.7,< 3.10; 1.7.0 Requires-Python >=3.7,< 3.10; 1.7.1 Requires-Python >=3.7,< 3.10 ERROR: Could not find a version that satisfies the requirement tb-nightly (from versions: none) ERROR: No matching distribution found for tb-nightly
重点是后面报错里表示了 tb-nightly没有相关匹配分布
换成阿里的源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple
复制代码
之后再重新执行 webui-user.bat
6.开始绘图
成功执行bat会自动跳转到127.0.0.1:7860页面上
左边输入照片形貌,点击右边的Generate即可生成图片
执行生成图片的时候假如报错
SafetensorError: Error while deserializing header: MetadataIncompleteBuffer
办理方式:
下载https://huggingface.co/runwayml/stable-diffusion-v1-5/tree/main 中v1-5-pruned-emaonly.ckpt
从下面的地点下载ckpt文件,并生存至…\models\Stable-diffusion: 复制完之后 bat重新执行下
再次执行
假如报错
RuntimeError: "LayerNormKernelImpl" not implemented for 'Half'
那就在执行bat时候添加 webui.bat --precision full –no-half
假如上述没有用,就给webui-user.bat文件里加上–no-half
set COMMANDLINE_ARGS= --skip-torch-cuda-test --no-half