下載HuggingFace模型的方法以及報錯解決

Chunleiii發表於2024-11-16

方法

  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

相關文章