增加 Golang 安装 Packages.

Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
rick.chan 2020-12-25 17:36:16 +08:00
parent 80468d5779
commit f0b30c4e32
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
# Golang 安装 Packages
## 1.proxy.golang.org timeout 无法访问
go 默认使用的是 proxy.golang.org在国内无法访问。
换一个国内能访问的代理地址:<https://goproxy.cn>,命令如下:
```bash
go env -w GOPROXY=https://goproxy.cn
```