其他分享
首页 > 其他分享> > Golang-开发环境搭建

Golang-开发环境搭建

作者:互联网

PS 参考博文 :https://www.liwenzhou.com/posts/Go/install_go_dev/

一、安装Go开发包

1.1、下载地址

- Go官网下载地址:https://golang.org/dl/
- Go官方镜像站(推荐):https://golang.google.cn/dl/

1.2、版本的选择

image

1.3、安装

1.3.1、Windows

image

image
image
image
image
image

1.3.2、Mac

image
image

image

1.3.3、Linux

# wget https://dl.google.com/go/go1.14.1.linux-amd64.tar.gz
# tar -zxvf go1.14.1.linux-amd64.tar.gz -C /usr/local  # 解压
export GOROOT=/usr/local/go
export PATH=$PATH:$GOROOT/bin
# go version
	go version go1.14.1 linux/amd64

二、GOROOT和GOPATH

GOPATH在不同操作系统平台上的默认值
image

image
image
image
image
image

2.1、GOPROXY 非常重要

# go env -w GOPROXY=https://goproxy.cn,direct

标签:GOPATH,GOROOT,Golang,Go,开发,https,go,安装,搭建
来源: https://www.cnblogs.com/dai-zhe/p/14821737.html