换了公司新电脑,以前用vpn都是直接都可以访问,这次换了电脑和vpn(这里用的海豚湾)就发现访问不了huggingface.co了,无法git clone 下载大模型真的很难受。
解决方法:
配置代理命令:
#设置使用代理
alias setproxy="export http_proxy=http://127.0.0.1:4780; export https_proxy=$http_proxy; export all_proxy=socks5://127.0.0.1:4781; echo 'Set proxy successfully'"
# 设置取消使用代理
alias unsetproxy="unset http_proxy; unset https_proxy; unset all_proxy; echo 'Unset proxy successfully'"
然后使用setproxy 就可以访问外网了,但ping可能还是ping不同,因为网络层的原因,可以使用httping访问google.com
参考: