fatal: unable to access ‘https://github.com/Stability-AI/stablediffusion.git/‘解决方案

大家好,我是水滴~~

本文主要介绍在安装 stable-diffusion-webui 时出现的 fatal: unable to access 'https://github.com/Stability-AI/stablediffusion.git/': Failed to connect to github.com port 443 after 21071 ms: Couldn't connect to server 问题的解决方案,希望能对你有所帮助。

文章目录

  • 问题描述
  • 解决方案
  • 常用命令
    • 查看全局配置
    • 配置代理
    • 取消代理


问题描述

在第一次启动 stable-diffusion-webui 时,会从 GitHub 中下载 Stable Diffusion 源码(https://github.com/Stability-AI/stablediffusion.git/),这一步就有可能报下面错误:

fatal: unable to access ‘https://github.com/Stability-AI/stablediffusion.git/‘解决方案_第1张图片

解决方案

该问题的原因是无法从 GitHub 服务器中克隆代码,这就需要我们配置一下代理:

git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890

而 7890 端口是我本地的端口,可以根据你的实际情况来修改。配置好后,再次运行 webui-user.bat 即可。

常用命令

查看全局配置

git config --global -l

配置代理

git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890

取消代理

git config --global --unset http.proxy
git config --global --unset https.proxy

你可能感兴趣的:(Stable,Diffusion,从入门到精通,python,stable,diffusion,github,git)