[GO基礎] - mac環境配置與測試回合

來源:互聯網
上載者:User

golang環境安裝

brew install golang
保險起見可以先brew update

IDE安裝

可以直接使用sublime、webstrom、eclipse等,在這裡我使用的是VSCode

  • sublime: 沒辦法跑測試
  • eclipse: 翻牆下載go外掛程式好坑~~

Delve調試環境安裝

brew install go-delve/delve/delve
檢查是否安裝成功dlv version,提示不存在該命令

錯誤提示

解決辦法
cd $HOME/Library/Caches/Homebrewtar xf delve-*.gzgo into directory ( mine is delve-1.0.0-rc.1 )sh scripts/gencert.shit will asks for password, and you're done.After that just re run brew install go-delve/delve/delve

參考:https://github.com/go-delve/homebrew-delve/issues/19#issuecomment-330442033

設定好後重新安裝

命令列dlv version

Delve DebuggerVersion: 1.0.0Build: v1.0.0

IDE啟動

檢測最簡單的伺服器代碼

func HelloServer1(w http.ResponseWriter, req *http.Request) {    fmt.Fprint(w,"hello world")}func main() {    http.HandleFunc("/test", HelloServer1)    err := http.ListenAndServe(":23456", nil)    if err != nil {        log.Fatal("ListenAndServe: ", err.Error())    }}
報錯如下

compile: version "go1.9" does not match go tool version "go1.9.1"
參考:https://stackoverflow.com/questions/46693653/compile-version-go1-9-does-not-match-go-tool-version-go1-9-1

解決辦法 export GOROOT=/usr/local/opt/go/libexec, 簡單粗暴

調試

提示錯誤:debugserver or lldb-server not found: install XCode's command line tools or lldb-server
老版本解決辦法:xcode-select --install
新版本不再有這個工具,只能去開發人員網站下載:https://developer.apple.com/download/more/
找到自己對應系統和xcode版本編號的下載即可

SUCCESS!

相關文章

聯繫我們

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