Go module 起手式

來源:互聯網
上載者:User
  • 安裝 Golang 到最新版並檢查
> //低於下面的版本去 golang.google.cn 升級 Golang> go version> go version go1.11 darwin/amd64
  • 設定環境變數開啟功能
> //下面是臨時開啟,寫到 bashrc 或者 zshrc 來永久開啟> export GO111MODULE=on
  • 初始化項目
>mkdir myproject1 && cd myproject1>go mod init
  • 直接寫代碼
//main.gopackage mainimport (    "log"    "github.com/thanhpk/randstr")func main() {    log.Println(randstr.Hex(16))}

然後編譯運行

go run main.go

注意,我們並沒有 go get github.com/thanhpk/randstr

  • 後續和擴充

    • 包管理是個比較複雜的問題,有循環相依性等問題
    • go mod 的原理有很多資料可以看
    • https://docs.gomods.io/ 是微軟開源的項目,解決了 proxy 的問題。
相關文章

聯繫我們

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