在国内Liunx中安装软件,访问github是非常难的。所以我们需要挂一个代理来加速访问。
在Liunx中可以使用全局变量来临时添加代理。
bashexport proxy="socks5://user:[email protected]:8118"
export http_proxy=$proxy
export https_proxy=$proxy
export ftp_proxy=$proxy
export no_proxy="localhost, 127.0.0.1, ::1"
取消代理
bashunset http_proxy
unset https_proxy
unset ftp_proxy