兄弟連區塊鏈培訓技術分享Go語言Ubuntu環境

來源:互聯網
上載者:User

  由於目前使用者普遍對於區塊鏈認知不足,加之區塊鏈專業人才的短缺及其高薪誘惑力,導致市場上衍生出多家區塊鏈培訓機構。兄弟連區塊鏈培訓學院院長尹正表示,面對魚龍混雜的區塊鏈培訓市場,消費者需仔細辨別。


  Go語言專門針對多處理器系統應用程式的編程進行了最佳化,使用Go編譯的程式可以媲美C或C++代碼的速度,而且更加安全、支援並行進程。

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

package main  


import "fmt"  


func main() {  

    fmt.Println("Hello world, I'm learning Golang")  

}  

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

相關文章

聯繫我們

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