Ubuntu14.04 Kylin下 GO語言環境搭建

來源:互聯網
上載者:User

標籤:blog   http   java   strong   os   2014   

 

sudo apt-get install golang

gccgo安裝

gcc -v 查看
--enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin 

如果有一個go,說明你的gcc支援golang,那麼就執行以下命令安裝gcc-go(大家試一下這命令,我不敢確定):

sudo apt-get install gccgo 

設定系統內容變數

sudo gedit /etc/profile

export GOROOT=/usr/lib/go #注意:網上有的文章是放在/usr/local/go
export GOBIN=$GOROOT/bin
export GOPKG=$GOROOT/pkg/tool/linux_amd64
export GOARCH=amd64
export GOOS=linux
export PATH=.:$PATH:$GOBIN:$GOPKG

編譯,使其生效

source /etc/profile

測試

 如果能看見版本號碼,那麼配置成功!

go version

go version go1.2.1 linux/amd64

 

編寫測試的代碼,儲存為hello.go

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

 go run hello.go

運行

 

成功!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.