首先
阅读https://github.com/astaxie/build-web-application-with-golang/blob/master/1.1.md
同时阅读http://code.google.com/p/golang-china/wiki/Install
下载go1.0.3.linux-amd64.tar.gz,依次执行如下命令:
sudo mkdir /opt/google
sudo tar zxvf go1.0.3.linux-amd64.tar.gz -C /opt/google
vi ~/.bashrc
加入
export GOPATH=$HOME/go
export GOROOT=/opt/google/go
export GOARCH=amd64
export GOOS=linux
export PATH=$PATH:$GOPATH/bin:$GOROOT/bin;
保存
source ~/.bashrc
接下来执行go,成功
接下来继续阅读
https://github.com/astaxie/build-web-application-with-golang/blob/master/1.2.md
cd ~
mkdir go
cd go
mkdir src
cd src
mkdir hello
cd hello
vi hello.go,内容如下:
package main import "fmt" func main(){ fmt.Println("hello world.\n") }保存,此时执行go install
会发现自动生成了如下文件
$HOME/go/bin/hello
而当前文件夹($/HOME/go/src/hello/)下面仍然只有一个hello.go的文件
但是因为$HOME/go/bin已经加到了PATH变量
所以直接运行hello,就能打出hello world.
注意:
GOPATH 指向你的工作文件夹
GOROOT 指向golang的安装目录
go build 在当前目录下生成可执行文件
go install 在bin目录下生成可执行文件
有疑问加站长微信联系(非本文作者)