git查看、配置、删除代理
link
git config --global https.proxy http://127.0.0.1:1080
git config --global http.proxy
https://stackoverflow.com/questions/11265463/reset-git-proxy-to-default-configuration
git config --global --unset http.proxy
git config --global --unset-all http.proxy #取消设置多个值
Huggingface安装与登录
huggingface安装
pip install -U "huggingface_hub[cli]"
查询本地git信息
git config --list
添加名称为本地git.user.name的token
本地登录(后续粘贴上面自动生成的token)
huggingface-cli login
获取帮助
huggingface-cli --help
通过国内镜像站下载模型
huggingface 国内镜像站:
https://hf-mirror.com/thu-coai/CDial-GPT_LCCC-large
git clone https://hf-mirror.com/thu-coai/CDial-GPT_LCCC-large
无语的bug
- windows只能用命令行跑,不能在VSCode的终端跑~
添加git代理,直接下载
git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890
然后可直接访问huggingface.co官网下载惹
git clone https://huggingface.co/thu-coai/CDial-GPT_LCCC-large