配置git config 实现从huggingface上批量下载
发布网友
发布时间:2024-10-07 13:46
我来回答
共1个回答
热心网友
时间:2024-10-07 14:14
当使用huggingface时遭遇访问限制,可以通过配置git的proxy来解决连接问题。首先,确保你已经设置了一个有效的代理,例如HTTP代理,使用命令:
git config --global http.proxy "127.0.0.1:1080"
git config --global https.proxy "https://127.0.0.1:1080"
如果你的代理支持SOCKS5协议,可以使用socks5代理,命令如下:
git config --global http.proxy "socks5://127.0.0.1:1080"
git config --global https.proxy "socks5://127.0.0.1:1080"
如果需要取消已设置的代理,可以使用以下命令来清除它们:
git config --global --unset http.proxy
git config --global --unset https.proxy
如果你想检查当前的代理设置,可以使用下面的命令来查看:
git config --get http.proxy
git config --get https.proxy
完成这些配置后,你就可以通过git clone命令无缝下载huggingface上的模型,无需手动操作每个模型的下载链接。