ubuntu配置vscode golang環境

來源:互聯網
上載者:User

今天配置環境弄了半天,原因就是 golang 官網被牆,無法下載包。

1. 安裝 golang

1). 在官網下載
2). 在下載目錄解壓縮並移動到/usr/local, tar -C /usr/local -xzf go$VERSION.$OS-$ARCH.tar.gz
3). 在~/.bashrc 添加環境變數

 export GOROOT=/usr/local/go export GOPATH=$HOME/go export PATH=$PATH:$GOROOT/bin:GOPATH

4). 完成環境設定後,用 source ~./bashrc 來使環境變數生效,然後重啟終端輸入 go 看是否成功

2. 配置 vscode 環境

1). 安裝 go 外掛程式
2). 在 src/隨便建一個.go 檔案,然後 vscode 會自動提示安裝外掛程式,點 install all

安裝結果

這時會有 6 個包安裝錯誤,看 log 發現下載從golang.org下載tool導致的。

3). 執行

mkdir $GOPATH/src/golang.org/x -p
cd $GOPATH/src/golang.org/x
git clone https://github.com/golang/tools

  • guru:

    cd $GOPATH/src/golang.org/x/tools/cmd/guru
    go install

  • gorename

    cd $GOPATH/src/golang.org/x/tools/cmd/gorename
    go install

  • goreturns

    cd $GOPATH/src/github.com/sqs/goreturns
    go install

  • golint

    cd $GOPATH/src/github.com/golang/lint
    go install

  • go-outline

    cd $GOPATH/src/github.com/ramya-rao-a/go-outline
    go install

  • go-symbols

    cd $GOPATH/src/github.com/acroca/go-symbols
    go install

就完成了!

相關文章

聯繫我們

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