下载HuggingFace模型的方法以及报错解决

方法

  1. 新建文件夹,右键,open git bash here
  2. 设置全局代理
# 设置全局代理
git config --global https.proxy http://127.0.0.1:7890
git config --global https.proxy https://127.0.0.1:7890
git config --global http.proxy socks5://127.0.0.1:7890
git config --global https.proxy socks5://127.0.0.1:7890
  1. 进入huggingface,复制运行这两个
    1

报错

fatal: unable to access 'https://huggingface.co/InstantX/InstantIR/': Could not resolve host: huggingface.co
解决

配置socks5

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

配置http

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

posted @ 2024-11-16 09:18  Chunleiii  阅读(29)  评论(0编辑  收藏  举报