学习golang,首先需要在 https://golang.org/dl/ 下载安装包,
如果打不开可以使用这个地址:https://golang.google.cn/dl/
在开发过程中,需要到github、goole code等网站,下载各种引入包,
这个时候需要安装git,下载地址为 https://git-scm.com/
科学上网后,GIt也需要设置,才能正常访问github、goole code等网站,go get 也会调用git
git代理设置如下(可复制):
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'
取消git代理设置
git config --global --unset http.proxy
git config --global --unset https.proxy
有疑问加站长微信联系(非本文作者)