Nenly:第2课:自定义节点的安装与运用
Nenly:第2课:自定义节点的安装与运用
2024年10月8日修改
常见问题
1.
Git Clone连接超时
📌
常见问题:fatal: unable to access '...': (连接超时)
由于连接问题,通过Git Clone下载GitHub上的开源应用常常会因为超时而卡住下载进度或断连。
以下是解决方法:
1.
使用国内的镜像链接
有一些站点提供了GitHub的镜像加速服务。将“git clone”后的代码仓库地址更换为一些镜像链接,如:
https://mirror.ghproxy.com/
git clone https://github.com/bmaltais/kohya_ss.git/
修改为
git clone https://mirror.ghproxy.com/https://github.com/bmaltais/kohya_ss.git/
https://gitclone.com/
git clone https://github.com/bmaltais/kohya_ss.git/
修改为
git clone https://gitclone.com/github.com/bmaltais/kohya_ss.git/