main.go 无法找到软件包

实际上我想用它来生成用于视频的文件,所以我找到了下面开发来做这个事情,所以我克隆了这个 https://github.com/Avalanche-io/c4/tree/v0.7.0c4c4 id reporepo


现在,正如堆栈溢出的答案中所建议的那样:无法从github安装c4的cmd版本


我在终端中执行以下命令ubuntu


go get github.com/Avalanche-io

go get github.com/Avalanche-io/c4/id

go get github.com/Avalanche-io/c4/cmd/c4

然后,正如他们在如何使用这个的例子中所显示的那样repo


package main


import (

  "fmt"

  "io"

  "os"


  c4 "github.com/avalanche-io/c4/id"

)


func main() {

  file := "main.go"

  f, err := os.Open(file)

  if err != nil {

    panic(err)

  }

  defer f.Close()


  // create a ID encoder.

  e := c4.NewEncoder()

  // the encoder is an io.Writer

  _, err = io.Copy(e, f)

  if err != nil {

    panic(err)

  }

  // ID will return a *c4.ID.

  // Be sure to be done writing bytes before calling ID()

  id := e.ID()

  // use the *c4.ID String method to get the c4id string

  fmt.Printf("C4id of \"%s\": %s\n", file, id)

  return

}

我只是复制了这个相同的示例并创建了一个文件,当我运行此命令时,他们在 https://github.com/Avalanche-io/c4/blob/v0.7.0/id/README.md 中定义了该命令,该命令是文件的c4 id''',如他们在示例中所示。我收到以下错误main.goREADME.mdgo run main.go  ```` Instead of getting the 


main.go:8:3: cannot find package "github.com/avalanche-io/c4/id" in any of:

    /usr/lib/go-1.13/src/github.com/avalanche-io/c4/id (from $GOROOT)

    /home/vinay/go/src/github.com/avalanche-io/c4/id (from $GOPATH)


我不懂语言,所以对我来说很难解决这里的问题,有没有什么开发人员可以帮助我。gogo


肥皂起泡泡
浏览 121回答 1
1回答

qq_遁去的一_1

main.go文件里面找不到包,正如我所看到的你已经运行了以下命令github.com/avalanche-io/c4/id/home/vinay/go/src/github.com/avalanche-io/c4/id go get go get github.com/Avalanche-iogo get github.com/Avalanche-io/c4/idgo get github.com/Avalanche-io/c4/cmd/c4但是它们都没有名字,所以根据我的说法,你需要执行以下命令github.com/avalanche-io/c4/idgo get github.com/avalanche-io/c4/id现在只需运行您的 main.gogo run main.go
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go