Linux配置Golang 依赖包安装
Linux Golang安装
安装版本查看,可自行选择
https://studygolang.com/articles/13957?fr=sidebar
此次选择
go1.14.2.linux-amd64.tar.gz Archive Linux x86-64 118MB 6272d6e940ecb71ea5636ddb5fab3933e087c1356173c61f4a803895e947ebb3
wget https://studygolang.com/dl/golang/go1.14.2.linux-amd64.tar.gz
tar -C /usr/local -zxvf go1.14.2.linux-amd64.tar.gz
// 习惯用vim,没有的话可以用命令`sudo apt-get install vim`安装一个
vim /etc/profile
// 在最后一行添加
export GOROOT=/usr/local/go
export PATH=$PATH:$GOROOT/bin
// wq保存退出后source一下
source /etc/profile
Golang依赖包安装
go mod init [module]
#具体看看这个
go help mod init
#检查是否安装成功
go version
#安装成功后,设置环境变量
go env -w GO111MODULE=on
go env -w GOPROXY="https://mirrors.aliyun.com/goproxy/"
附上一部分go get 下载没反应问题
可以通过ip查询网站
https://www.ipaddress.com/ip-lookup
github.com
github.global.ssl.fastly.net 这两个网站的ip,配置hosts绑定
windows改hosts
C:\Windows\System32\drivers\etc\hosts
linux改hosts
/etc/hosts