分享
Nenly:第2课:自定义节点的安装与运用
输入“/”快速插入内容
Nenly:第2课:自定义节点的安装与运用
用户8537
用户8537
2024年10月8日修改
常见问题
1.
Git Clone连接超时
📌
常见问题:fatal: unable to access '...
':
(连接超时)
由于连接问题,通过Git Clone下载GitHub上的开源应用常常会因为超时而卡住下载进度或断连。
以下是解决方法:
1.
使用国内的镜像链接
有一些站点提供了GitHub的镜像加速服务。将
“git clone”
后的代码仓库地址更换为一些镜像链接,如:
https://mirror.ghproxy.com/
代码块
JavaScript
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/
代码块
JavaScript
git clone
https://github.com/bmaltais/kohya_ss.git/
修改为
git clone
https://gitclone.com/github.com/bmaltais/kohya_ss.git/
2.
在国内代码仓库搜寻相关项目
在诸如
Gitcode
、
Gitee
等国内代码仓库搜寻其他开发者“搬运”的节点代码仓库,并选择更新时间较近的版本克隆下载。操作流程与克隆GitHub上的代码仓库完全相同。
在使用Comfy UI Manager时,可通过
Install via Git URL(通过Git链接安装)
选项,输入节点手动安装国内仓库的自定义节点。