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