溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么配置使用Go語言IDE中的VSCode

發(fā)布時間:2020-07-28 09:59:28 來源:億速云 閱讀:144 作者:小豬 欄目:編程語言

這篇文章主要講解了怎么配置使用Go語言IDE中的VSCode,內(nèi)容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

一、Golang 環(huán)境配置

關(guān)于 Goland 的系統(tǒng)環(huán)境配置,這里就不在過多講解,可以直接參考該鏈接的前半部分即可。

二、安裝配置 VSCode

下載鏈接:https://code.visualstudio.com/

選擇自己系統(tǒng)對應(yīng)的版本就可以,這個做 IT 的都不知道那就轉(zhuǎn)行吧。

2.1 安裝 golang 插件

進入Visual Studio Code,使用快捷鍵F1,打開命令面板

怎么配置使用Go語言IDE中的VSCode

在上圖光標處·輸入 exten ,然后選擇“Extensions:Install Extension”,如下圖

怎么配置使用Go語言IDE中的VSCode

查詢并安裝 Go 插件

怎么配置使用Go語言IDE中的VSCode

提示:在插件列表中,選擇 Go,進行安裝,安裝之后,系統(tǒng)會提示重啟Visual Studio Code。由于我這里已經(jīng)安裝過了,所以不會出現(xiàn) "Install" 選項。

2.2 開啟自動保存功能

打開Visual Studio Code,找到菜單File -> Preferences -> Settings,如下圖:

怎么配置使用Go語言IDE中的VSCode

選中 "User Settings" 配置如下內(nèi)容

怎么配置使用Go語言IDE中的VSCode

{
 "files.autoSave": "onFocusChange",
 "editor.fontSize": 18,
 "go.goroot": "D:\\Go",
 "go.gopath": "D:\\Golang\\MyGO"
}

其他保持默認配置即可;

2.3 執(zhí)行相關(guān)命令(自行安裝好git)

更多詳細信息參考:https://marketplace.visualstudio.com/items?itemName=ms-vscode.Go

1)安裝gocode

打開命令提示符(以管理員身份打開),輸入:

go get -u -v github.com/nsf/gocode

2)安裝godef

go get -u -v github.com/rogpeppe/godef

3)安裝golint

# 創(chuàng)建 $GOPATH/src/golang.org/x
cd $GOPATH/src/golang.org/x
git clone https://github.com/golang/tools.git
git clone https://github.com/golang/lint.git

# 完成以上步驟后,執(zhí)行
go get golang.org/x/lint/golint

如果你遇到了類似如下錯誤,就可以通過 git clone 的方式把包下載到本地,再進行安裝即可解決問題;

Fetching https://golang.org/x/tools/go/buildutil?go-get=1
https fetch failed: Get https://golang.org/x/tools/go/buildutil?go-get=1: dial tcp 216.239.37.1:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
package golang.org/x/tools/go/buildutil: unrecognized import path "golang.org/x/tools/go/buildutil" (https fetch: Get https://golang.org/x/tools/go/buildutil?go-get=1: dial tcp 216.239.37.1:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.)

4)安裝go-find-references

go get -u -v github.com/lukehoban/go-find-references

5)安裝go-outline

go get -u -v github.com/lukehoban/go-outline

6)安裝goreturns

go get -u -v sourcegraph.com/sqs/goreturns

7)安裝gorename

go get -u -v golang.org/x/tools/cmd/gorename

提示:如果還提示報錯,因為前面已經(jīng)git clone 下來了,可以執(zhí)行執(zhí)行"go installgolang.org/x/tools/cmd/gorename";

8)安裝gopkgs

go get -u -v github.com/tpng/gopkgs

9)安裝go-symbols

go get -u -v github.com/newhook/go-symbols

2.4 寫一個程序進行測試

怎么配置使用Go語言IDE中的VSCode

可以看到能夠進行相關(guān)提示。這里我們執(zhí)行完整程序測試一下,程序是否正常。

怎么配置使用Go語言IDE中的VSCode

看完上述內(nèi)容,是不是對怎么配置使用Go語言IDE中的VSCode有進一步的了解,如果還想學習更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI