赞
踩
AI绘画第一步,安装Stable-Diffusion-WebUI全过程 !_托尼不是塔克的博客-CSDN博客 我是按照以上博客安装,但是安装并不顺利,因为网速问题,运行webui-user1.bat 经常断掉。 因为git拉取了特定版本,所以我将launch_utils.py中的: #git_clone(stable_diffusion_repo, repo_dir('stable-diffusion-stability-ai'), "Stable Diffusion", stable_diffusion_commit_hash) # git_clone(stable_diffusion_xl_repo, repo_dir('generative-models'), "Stable Diffusion XL", stable_diffusion_xl_commit_hash) # git_clone(k_diffusion_repo, repo_dir('k-diffusion'), "K-diffusion", k_diffusion_commit_hash) # git_clone(codeformer_repo, repo_dir('CodeFormer'), "CodeFormer", codeformer_commit_hash) # git_clone(blip_repo, repo_dir('BLIP'), "BLIP", blip_commit_hash) 改为:
git_clone(stable_diffusion_repo, repo_dir('stable-diffusion-stability-ai'), "Stable Diffusion") git_clone(stable_diffusion_xl_repo, repo_dir('generative-models'), "Stable Diffusion XL") git_clone(k_diffusion_repo, repo_dir('k-diffusion'), "K-diffusion") git_clone(codeformer_repo, repo_dir('CodeFormer'), "CodeFormer") git_clone(blip_repo, repo_dir('BLIP'), "BLIP")
就拉取最新版本。
但还是有不行的,所以要自己下载相应的git目录然后放进repository,记得把名字中的main去掉。
#stable_diffusion_repo = os.environ.get('STABLE_DIFFUSION_REPO', "https://github.com/Stability-AI/stablediffusion.git") stable_diffusion_xl_repo = os.environ.get('STABLE_DIFFUSION_XL_REPO', "https://github.com/Stability-AI/generative-models.git") k_diffusion_repo = os.environ.get('K_DIFFUSION_REPO', 'https://github.com/crowsonkb/k-diffusion.git') codeformer_repo = os.environ.get('CODEFORMER_REPO', 'https://github.com/sczhou/CodeFormer.git') blip_repo = os.environ.get('BLIP_REPO', 'https://github.com/salesforce/BLIP.git')
下载了模型放进:
得到下面比较好一点的效果。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。