Goland使用Go Modules創建/管理項目的操作

創建項目

在這裡插入圖片描述

Location:新項目文件夾GOROOT:go 安裝根目錄Proxy:https://goproxy.io,direct

重要:https://goproxy.io是下載go包的代理地址,設置後可在國內正常下載go倉庫/github的包。

創建

創建一個go文件

創建瞭一個test.go

在這裡插入圖片描述

下載安裝需要的包

這裡演示安裝mysql driver包:github.com/go-sql-driver/mysql

直接import顯示找不到包,使用左下方命令行工具,安裝mysql driver

在這裡插入圖片描述

使用go get 命令安裝包

使用go get github.com/go-sql-driver/mysql安裝mysql driver,安裝成功後test.go中import的包變綠。

我已經安裝過一次,第一次安裝應該會在命令窗口出現一些信息。

在這裡插入圖片描述

補充:Goland 使用 go modules的TIPS

運行go mod tidy,報錯:

go: golang.org/x/[email protected]: unrecognized import path “golang.org/x/sys” (https fetch: Get https://golang.org/x/sys?go-get=1: dial tcp 216.239.37.1:443: c
onnectex: 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.)
go: error loading module requirements

原因是某些依賴在國內被墻瞭,這邊可以設置一下proxy,就可以解決:

進入Goland的設置界面,File/Settings/Go/Go Module(vgo),設置一下Proxy為:https://goproxy.io。

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。如有錯誤或未考慮完全的地方,望不吝賜教。

推薦閱讀: