码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu下golang 环境安装

时间:2014-10-14 15:51:48      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   使用   ar   strong   sp   

从源代码编译安装

安装gcc工具,因为golang有些功能是使用c写的,所以构建golang的编译是必须的

apt-get install bison gawk gcc libc6-dev make

安装mercurial工具,目的使用hg命令来提取golang的源代码

apt-get install mercurial

代取提取,如果您的网速比较慢的话,此步要多花点时间

cd /usr/local
hg clone -r release https://go.googlecode.com/hg/ go

编译golang

cd go/src
./all.bash

配置系统环境

export GOROOT=/usr/local/go
export GOARCH=386
export GOOS=linux
export GOBIN=$GOROOT/bin/
export PATH=$PATH:$GOBIN

 

Ubuntu下golang 环境安装

标签:style   blog   http   color   os   使用   ar   strong   sp   

原文地址:http://www.cnblogs.com/saintaxl/p/4024162.html

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