内容简介:安装包下载地址为:Windows 系统下安装Windows 下可以使用 .msi 后缀(在下载列表中可以找到该文件,如
Mac 通过Homebrew安装golang
Mac:~ wujiahao$ brew install go ==> Downloading https://mirrors.ustc.edu.cn/homebrew-bottles/bottles/go-1.11.2.high_sierra.bottle.tar.gz ######################################################################## 100.0% ==> Pouring go-1.11.2.high_sierra.bottle.tar.gz ==> Caveats A valid GOPATH is required to use the `go get` command. If $GOPATH is not specified, $HOME/go will be used by default: https://golang.org/doc/code.html#GOPATH You may wish to add the GOROOT-based install location to your PATH: export PATH=$PATH:/usr/local/opt/go/libexec/bin ==> Summary :beer: /usr/local/Cellar/go/1.11.2: 9,282 files, 404MB
配置golang的相关环境变量
Mac::~ wujiahao$ vim ~/.bash_profile
根据你自己上面安装的位置将下面的语句粘贴进 .bash_profile
#GOROOT export GOROOT=/usr/local/opt/go #GOPATH root bin export PATH=$PATH:$GOROOT/bin
让改动生效
Mac::~ wujiahao$ source ~/.bash_profile
那么现在让我们来测试一下我们的配置是否生效了吧
MacdeMac-mini:~ wujiahao$ go env GOARCH="amd64" GOBIN="" GOCACHE="/Users/wujiahao/Library/Caches/go-build" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" GOPATH="/Users/wujiahao/go" GOPROXY="" GORACE="" GOROOT="/usr/local/opt/go" GOTMPDIR="" GOTOOLDIR="/usr/local/opt/go/pkg/tool/darwin_amd64" GCCGO="gccgo" CC="clang" CXX="clang++" CGO_ENABLED="1" GOMOD="" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/ly/p7lzr5gn4z5bt9b1j2rvx_x80000gp/T/go-build640065879=/tmp/go-build -gno-record-gcc-switches -fno-common"
Windows
安装包下载地址为: https://golang.google.cn/dl/ 。
吴佳浩个人博客
Windows 系统下安装
Windows 下可以使用 .msi 后缀(在下载列表中可以找到该文件,如 go1.11.2.windows-amd64.msi 的安装包来安装。
默认情况下.msi文件会安装在 c:\Go 目录下。你可以将 c:\Go\bin 目录添加到 PATH 环境变量中。添加后你需要重启命令窗口才能生效。
安装测试
创建工作目录 C:\>Go_WorkSpace。
文件名: test.go,代码如下:
package main import "fmt" func main() { fmt.Println("Hello, World!") }
使用 go 命令执行以上代码输出结果如下:
C:\Go_WorkSpace>go run test.go
Hello, World!
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 【Go 语言教程】Go 语言环境安装
- Go语言(一)----安装与配置
- 【Go语言学习】Linux下Go语言的安装与设置
- Centos7 安装go语言开发环境
- CentOS7.5 安装golang语言环境
- Mac下安装与配置Go语言开发环境
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The Web Designer's Idea Book
Patrick Mcneil / How / 2008-10-6 / USD 25.00
The Web Designer's Idea Book includes more than 700 websites arranged thematically, so you can find inspiration for layout, color, style and more. Author Patrick McNeil has cataloged more than 5,000 s......一起来看看 《The Web Designer's Idea Book》 这本书的介绍吧!