码迷,mamicode.com
首页 > 编程语言 > 详细

go语言:linux 源码安装

时间:2015-05-15 01:03:10      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

首先下载源码:http://www.golangtc.com/download

解压后,进入src文件夹,执行 ./all.bash

等待安装结束后,把目录复制到/usr/local/里,设置两个环境变量:

export GOROOT=/usr/local/go
export PATH=$PATH:$GOROOT/bin

然后就可以测试啦 

Create a file named hello.go and put the following program in it:

package main

import "fmt"

func main() {
    fmt.Printf("hello, world\n")
}

Then run it with the go tool:

$ go run hello.go
hello, world

If you see the "hello, world" message then Go is installed correctly.

 

听说最新的GO 1.5 使用go来编译go,看来他们是对自己的东西绝对有信心,没bug啦。

go语言:linux 源码安装

标签:

原文地址:http://www.cnblogs.com/xujinping/p/4504816.html

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