Ubuntu go語言環境

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

Ubuntu安裝Go:
sudo add-apt-repository ppa:gophers/go
sudo apt-get update
sudo apt-get install golang-stable

sudo apt-get install golang

或者直接下載go語言安裝包

環境配置:
vi /etc/profile
加入
export GOROOT=/usr/lib/go
export GOARCH=386
export GOOS=linux
export GOPATH=/home/administrator/workspace/go
export GOBIN=$GOPATH/bin
export PATH=$GOPATH/bin:$PATH

source /etc/profile

在建立GOPATH下建立三個目錄
mkdir src pkg bin
src 存放源碼
pkg 存放編譯產生的檔案
bin 存放產生的可執行檔

建立第一個go應用
cd $GOPATH/src
mkdir test1
cd test1
vi t1.go

[cpp] view plaincopy
  1. package main  
  2.   
  3. import "fmt"  
  4.   
  5. func main() {  
  6.     fmt.Println("Hello world, I'm learning Golang")  
  7. }  

main.main()是go應用的入口

編譯方式
1、進入對應的應用程式套件目錄,然後執行go install,就可以安裝了
2、在任意的目錄執行如下代碼go install test
3、進入對應的應用程式套件目錄,然後執行go build,就會在目前的目錄產生可執行檔

 

配置VIM支援GO語言文法高亮
cp -r $GOROOT/misc/vim/* ~/.vim/ 註:$GOROOT是go的安裝目錄
vi ~/.vimrc 加入
filetype plugin indent on
syntax on

安裝Gocode

go get -u github.com/nsf/gocode
gocode預設安裝到$GOBIN下面。

配置Gocode

~ cd $GOPATH/src/github.com/nsf/gocode/vim
./update.bash

 gocode set propose-builtins true

顯示

propose-builtins true

安裝開發環境LITEIDE

https://code.google.com/p/golangide/downloads/list


相關文章

聯繫我們

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