登录
首页 >  Golang >  Go问答

在 go 模块中访问本地包(go 1.11)

来源:Golang技术栈

时间:2023-03-06 19:30:11 281浏览 收藏

“纵有疾风来,人生不言弃”,这句话送给正在学习Golang的朋友们,也希望在阅读本文《在 go 模块中访问本地包(go 1.11)》后,能够真的帮助到大家。我也会在后续的文章中,陆续更新Golang相关的技术文章,有好的建议欢迎大家在评论留言,非常感谢!

问题内容

我正在尝试 Go 的新模块系统,但无法访问本地包。以下项目位于我的 gopath 之外的桌面上的一个文件夹中。

我的项目结构如下:

/
  - /platform
      - platform.go
  - main.go
  - go.mod

// platform.go
package platform

import "fmt"

func Print() {
    fmt.Println("Hi")
}

// main.go
package main

import "platform"

func main() {
    platform.Print()
}

go build main.go告诉我

cannot find module for path platform

正确答案

我强烈建议您使用开箱即用的 go toolchain 来解决这些问题。带有 vscode-go 插件的 Visual Studio Code 非常有用。

这里的问题是 Go 需要相对于您的$GOPATH/srcor modulein import 语句的相对路径。根据您在 中的位置GOPATH,导入路径也应该包括它。在这种情况下,import 语句必须包含 go module path ingo.mod

GOPATH

假设您的项目位于此处:

$GOPATH/src/github.com/myuser/myproject

您的导入路径应为:

import "github.com/myuser/myproject/platform"

VGO

假设您的 go.mod 文件是:

module example.com/myuser/myproject

您的导入路径应为:

import "example.com/myuser/myproject/platform"

本篇关于《在 go 模块中访问本地包(go 1.11)》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于Golang的相关知识,请关注golang学习网公众号!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>