Go語言開發環境配置(VSCode)

來源:互聯網
上載者:User

安裝go

安裝git

VS Code配置

  • 1.安裝go擴充
    在vscode擴充中搜“go”,選擇microsoft官方的ms-vscode.go

  • 2.安裝相關工具包

    • 通過VSCode安裝
      操作很簡單,但需要科學上網(見下面第4條)
      • 1)Ctrl + Shift + P
      • 2)輸入Go: install/update tools
      • 3)All Select,確定
      • 4)部分工具需要科學上網。注意為VSCode設定[使用者佈建]http代理:
        此處以SSR為例,請先安裝並完成SSR用戶端配置
        • 4.1) windows下先啟動SSR用戶端,再對VSCode設定:
        "http.proxy": "127.0.0.1:1080",  
        • 4.2) linux下需要使用privoxy一類的工具,安裝配置好privoxy之後,再設定VSCode
        "http.proxy": "http://localhost:8118/",  
        註:因為要跑本地服務,因此需要去掉Privoxy/config中# forward localhost/ .注釋
        forward           localhost/     .  
    • 手動安裝
      • 使用go get,例如:
        go get -u github.com/gin-gonic/gin  
        部分包需要科學上網,可參考前面科學上網說明
      • 不想翻牆的安裝方法
        # 注意,github下golang/鏡像中的包需要放到golang.org/x目錄下  git clone https://github.com/golang/net.git $GOPATH/src/golang.org/x/net  git clone https://github.com/golang/sys.git $GOPATH/src/golang.org/x/sys  git clone https://github.com/golang/tools.git $GOPATH/src/golang.org/x/tools  
  • 3.配置

    • 設定toolsGopath(原因參考vscode golang詳細配置中的【註:坑點】)
      在VSCode[使用者佈建]中添加:
      "go.toolsGopath": "F:\\SourceCode\\go",  
    • debug配置
      使用預設配置
      debug配置的更多資訊,參考官方Wiki: Debugging Go code using VS Code
相關文章

聯繫我們

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