Fork me on GitHub
打赏

Linux操作系统配置Go语言编程环境

之前一直在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语言环境搭建详解_飞雪无情

 

posted @ 2018-10-19 18:33  Zoctopus_Zhang  阅读(768)  评论(0编辑  收藏  举报
// function btn_donateClick() { var DivPopup = document.getElementById('Div_popup'); var DivMasklayer = document.getElementById('div_masklayer'); DivMasklayer.style.display = 'block'; DivPopup.style.display = 'block'; var h = Div_popup.clientHeight; with (Div_popup.style) { marginTop = -h / 2 + 'px'; } } function MasklayerClick() { var masklayer = document.getElementById('div_masklayer'); var divImg = document.getElementById("Div_popup"); masklayer.style.display = "none"; divImg.style.display = "none"; } setTimeout( function () { document.getElementById('div_masklayer').onclick = MasklayerClick; document.getElementById('btn_donate').onclick = btn_donateClick; var a_gzw = document.getElementById("guanzhuwo"); a_gzw.href = "javascript:void(0);"; $("#guanzhuwo").attr("onclick","follow('33513f9f-ba13-e011-ac81-842b2b196315');"); }, 900);