在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1,下载 wget https://dl.google.com/go/go1.13.5.linux-amd64.tar.gz 2.解压安装 https://golang.google.cn/doc/install tar -C /usr/local -xzf go1.13.5.linux-amd64.tar.gz 3.添加环境变量 export PATH=$PATH:/usr/local/go/bin #重启系统会消失
执行 source /etc/profile GOROOT为go安装目录 GOPATH为工作目录 如 go get 下载的文件会放到该目录下, GOOBIN为生成文件可运行目录 只配置当前用户 export GOROOT=/usr/local/go 将上边内容加入~/.profile 我的测试机centos7加入到文件末 /root/.bash_profile source /root/.bash_profile 4.测试 go version 显示版本信息 创建 hello.go cd ~/goproject vi hello.go package main import "fmt" func main() { fmt.Printf("hello, world\n") } go build hello.go
测试成功 5.Go 模块代理设置,解决国外网站模块下载慢或不能下载问题 linux下 echo "export GOPROXY=https://goproxy.cn" >> ~/.bash_profile && source ~/.bash_profile 或 go env -w GOPROXY=https://goproxy.cn,direct windows 打开你的 PowerShell 并执行: C:\> $env:GOPROXY = "https://goproxy.cn"
参考文档 https://golang.google.cn/doc/install https://github.com/goproxy/goproxy.cn/blob/master/README.md |
请发表评论