您的位置:首页 > 编程语言 > Go语言

golang的安装

2016-05-23 10:10 417 查看
整理了一下,网上关于golang的安装有三种方式(注明一下,我的环境为CentOS-6.x, 64bit)

方式一:yum安装(最简单)

rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm yum install golang

方式二:源码安装:

wget http://go.googlecode.com/files/go1.2.linux-amd64.tar.gz tar -xvf go1.2.linux-amd64.tar.gz
sudo cp -r go /usr/local/go

vi /etc/profile

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

source /etc/profile

方式三:类似源码安装

$ sudo yum install mercurial
$ hg clone -u release https://go.googlecode.com/hg/ golang
To build the Go distribution, run
cd go/src
./all.bash
If all goes well, it will finish by printing output like:
ALL TESTS PASSED---Installed Go for linux/amd64 in /home/you/go.Installed commands in /home/you/go/bin.*** You need to add /home/you/go/bin to your $PATH. ***

安装完毕之后看看状态:

$go version
go version go1.2 linux/amd64

测试文件

vim hello.go

package main
import "fmt"
func main()
{
fmt.Printf("hello go\n")
}

运行:

go run hello.go
hello go
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: