ubuntu go install

1)_sudo apt-get install bison ed gawk gcc libc6-dev make

2)apt-get install python-setuptools python-dev build-essential

3)hg clone -u release https://go.googlecode.com/hg/ go

4)cd go/src

5)./all.bash

6)在home的当前用户目录下编辑hello.go

package main

import "fmt"

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



7)编译并链接

 

cd ~/go/bin

 

./8g ~/hello.go

 

 ./8l ~/hello.8

8)执行

./8.out

 

*********@********-O-E-M:~/go/bin$ ./8.out

hello, world


 

二、版本更新

cd go/src

hg pull

hg update release

./all.bash


本文来自:CSDN博客

感谢作者:anjsoft

查看原文:ubuntu go install

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。