码迷,mamicode.com
首页 > 其他好文 > 详细

go环境安装

时间:2019-05-09 15:49:33      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:安装   pytho   file   tar   查看   环境安装   local   world   版本   

解压安装包

tar xf go1.4.1.linux-amd64.tar.gz 
mv go /usr/local/

  环境变量设置

[root@python bin]# vim /etc/profile.d/go.sh

export GO_HOME=/usr/local/go
export PATH=$GO_HOME/bin:$PATH
[root@python bin]# exec bash

  查看版本

[root@python bin]# go version
go version go1.4.1 linux/amd64

  打印Hello, World!

[root@python ~]# vim test.go

package main

import "fmt"

func main() {
   fmt.Println("Hello, World!")
}
[root@python ~]# go run test.go 
Hello, World!

  

 

go环境安装

标签:安装   pytho   file   tar   查看   环境安装   local   world   版本   

原文地址:https://www.cnblogs.com/rdchenxi/p/10838481.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!