在Mac OS X(10.7.5)下安裝和使用GO語言

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

在Mac OS X(10.7.5)下安裝和使用GO語言

轉載自:http://blog.prosight.me/index.php/2010/08/655,進行部分修改;

Go語言是Google新推出的結合了動態語言和靜態語言優勢的一個新興的語言。下面介紹一下如何在Mac系統下安裝和使用這個語言。

1、設定環境變數:

$GOROOT
GO語言的根目錄,通常是$HOME/go,當然也可以是任何其他目錄。

$GOOS 和 $GOARCH

標明GO語言所在的系統和處理器類型。$GOOS可以是linux, freebsd, darwin (Mac OS X 10.5 or 10.6)和 nacl (Native Client, an incomplete port)。$GOARCH可以是amd64 (64-bit x86, the most mature port), 386 (32-bit x86), arm (32-bit ARM, an incomplete port)。
你可以在你的shell profile中設定這些變數,我是放在了~/.bash_profile裡了。
export GOROOT=$HOME/goexport GOARCH=amd64export GOOS=darwinexport PATH=$PATH:$GOROOT/bin
其中, $GOROOT/bin是GO預設的可執行檔的目錄,加入到path中方便使用go的各種命令。

再執行
$ source ~/.bash_profile

使最新的設定檔生效。


2、獲得源檔案
如果你的系統中沒有安裝Mercurial(沒有安裝它,你就無法使用hg命令),那麼使用這個命令來安裝它:

$ sudo easy_install mercurial
然後使用下面的命令,還獲得GO語言的源檔案:
$ hg clone -r release https://go.googlecode.com/hg/ $GOROOT

3、安裝GO語言

$ cd $GOROOT/src$ ./all.bash
如果一切正常,你應該可以在最後看到類似的結果:
ALL TESTS PASSED---Installed Go for darwin/amd64 in /Users/username/goInstalled commands in /usr/local/bin


4、運行GO

撰寫第一個Hello,World:

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

運行:
$ go run hello.go

5、更新

      Go是一個發展中的語言,它的版本會經常進行更新,可以使用以下命令,保持GO語言是最新版本的

$ cd $GOROOT/src$ hg pull$ hg update release$ ./all.bash


6、Go的官方網站是:http://golang.org
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.