之前一直在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

  

 

二、参考文章

Go语言环境搭建详解_飞雪无情

 

相关文章:

  • 2021-12-31
  • 2021-12-02
  • 2022-12-23
  • 2021-05-11
  • 2021-11-03
  • 2021-12-16
  • 2022-01-01
猜你喜欢
  • 2021-07-13
  • 2022-12-23
  • 2021-03-31
  • 2022-01-18
  • 2021-11-13
  • 2021-06-24
相关资源
相似解决方案