红联Linux门户
Linux帮助

golang ubuntu安装

发布时间:2016-05-09 15:45:13来源:linux网站作者:xurui

golang 的安装可以参考:
https://github.com/astaxie/build-web-application-with-golang


sudo apt-get install python-software-properties
sudo add-apt-repository ppa:gophers/go
sudo apt-get update
sudo apt-get install golang-stable git-core mercurial


但是第四步可能失败,应为golang 是google 开发的,在国内可能不能访问了。


直接下载安装tar包解压即可:
http://www.golangtc.com/download
 

解压后在.bashrc 里面配置一下环境变量,然后source ~/.bashrc。

export GO_INSTALL_DIR=/local/tools/go/
export GOROOT=/local/tools/go
export GOPATH=/local/program/go/
export GOBIN=/local/program/go/bin
export PATH=$PATH:$GO_INSTALL_DIR/bin


在$GOPATH 路径下面建3个文件夹bin, pkg, src

在src 里面即可编写代码了 vim hello.go。

package main

import (
"fmt"
)
func main() {
fmt.Printf("Hello, world.")
}


运行:
$go run hello.go

Hello, world.


本文永久更新地址:http://www.linuxdiyf.com/linux/20481.html