之前一直在windows下写Go,现在工作环境切换至Linux下,因此写下此文,记录安装Go环境的过程。
操作系统:CentOS7.5
一、安装步骤
1,下载Go语言安装包
yum install golang -y
2,检查下载的Go语言版本
[root@localhost centos]# go version go version go1.9.4 linux/amd64
3,在 etc/profile 配置文件中添加GOROOT和GOPATH
export GOROOT=/usr/lib/golang export GOPATH=/home
使配置文件生效
//在根目录下执行 source /etc/profile //或在 etc 目录下执行 source profile
4,创建一个hello.go文件进行测试
package main import( "fmt" ) func main(){ fmt.Println("Hello!") }
//保存退出,并执行该文件 go run hello.go