尝试构建我正在处理的go项目时出现以下错误。
cannot find package "github.com/user/projectname/models" in any of:
/usr/local/go/src/github.com/user/projectname/models (from $GOROOT)
/Users/username/go/src/github.com/user/projectname/models (from $GOPATH)
这个错误使我感到困惑,因为软件包位于goroot的目录中。我有3个go文件,其中定义了模型。当我在models目录中运行'go build'或'go install'时,不会返回任何错误。我是新手,相信我一定会错过一些简单的事情。我使用的是mac,我的github用户名目录显示为github.com:user而不是github.com/username。这会有所作为吗?
导入模型片段的类:
package dal
import (
"database/sql"
"log"
"github.com/user/projectname/models"
)
模特课:
package models
import "time"
//Album of an artist.
type Album struct {
ID int `json:"id"`
Title string `json:"title"`
ArtistID int `json:"artist_id"`
ReleaseDate time.Time `json:"date"`
}
答案 0 :(得分:0)
我更改了目录结构,现在包导入了。以前,我的文件夹被命名为src-> github.com,github.com / username。我已经将它重写为src-> github.com->用户名。像这样移动文件夹可以轻松找到项目。
官方go documentation不清楚这是否是预期的结构。但是,在查看the github code layout后,它就变得清晰了。