方法
- 新建資料夾,右鍵,open git bash here
- 設定全域性代理
# 設定全域性代理
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
- 進入huggingface,複製執行這兩個
報錯
一
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