Go語言VSCode開發環境配置

Eric zhou發表於2024-03-10

最近學習Golang,先把開發環境配置好。

一、安裝Go語言開發包

https://golang.google.cn/dl/

按步驟安裝即可,安裝完成後需要設定Windows環境變數

配置好,做個測試

二、VSCode Golang開發環境配置

vscode安裝go外掛時,由於各種原因,在安裝外掛時總是失敗,所以先執行以下操作:

在安裝go外掛時,會自動更新很多依賴庫檔案,都是從Github更新下來,但是因為Github的檔案中,多有應用go官網中的檔案,因為一些網路國內無法訪問,網路緣故,不能直接下載,導致安裝失敗。

1. 先設定一下環境變數

核心是配置國內下載源

PS E:\Teld\01Code\Personal\golang> go env -w GO111MODULE=on
warning: GOPATH set to GOROOT (E:\Program Files\Go\) has no effect
PS E:\Teld\01Code\Personal\golang> go env -w GOPROXY=https://mirrors.aliyun.com/goproxy/
warning: GOPATH set to GOROOT (E:\Program Files\Go\) has no effect

配置好兩個變數後,重新開啟VSCode,點選右下方的install all重新安裝,

或者,在vscode中使用Ctrl+Shift+P,輸入>go:install,下面會自動搜尋相關命令,我們選擇Go:Install/Update Tools這個命令,選中所有外掛,點選確定進行安裝。

安裝Go外掛後,繼續安裝VSCode Go 擴充套件

三、除錯Go程式碼

新建main.go檔案

package main

import (
"fmt"
"net/http"
)

func main() {
fmt.Println("Server is running on port 8080")
http.Handle("/", http.FileServer(http.Dir(".")))
http.Handle("/Test", Test())
http.ListenAndServe(":8080", nil)

}

func Test() http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "Hello World")
})
}

終端中執行go mod init golang

Ctrl+Alt+N 執行main.go程式碼

以上是整個Golang開發環境配置過程,分享給大家。

周國慶

2024/3/10

相關文章