问题及解决
收录启动Stable Diffusion时候出现的各种问题及解决方案
问题1:Failed to initialize: Bad git executable.
当点击项目目录下的webui.bat
,会出现以下错误的时候:文章来源:https://www.toymoban.com/news/detail-509511.html
解决办法是先找到项目的虚拟环境地址,例如:..\stable-diffusion-webui\venv\
,然后找到下面的git/cmd.py
文件,在import os
下添加一段代码,具体如下:文章来源地址https://www.toymoban.com/news/detail-509511.html
import re
from contextlib import contextmanager
import io
import logging
import os
os.environ['GIT_PYTHON_REFRESH'] = 'quiet'
import signal
from subprocess import call, Popen, PIPE, DEVNULL
import subprocess
import threading
from textwrap import dedent
from git.compat import (
defenc,
force_bytes,
safe_decode,
is_posix,
is_win,
)
到了这里,关于【AI】Stable Diffusion懒人包部署常见问题/解决(持续收录)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!