在 Go 语言中找不到提供包 ed25519 的模块
Cannot find module providing package ed25519 in Go language
我是 Go 语言的新手。我想使用此命令 go run main.go
.
测试 Go 语言 some code in Go language 中的一些代码
我有这个错误:
cannot find module providing package github.com/perlin-network/noise/crypto/ed25519
我尝试使用以下方式安装它:
go get github.com/perlin-network/noise/crypto/ed25519
我收到这个错误:
go: finding github.com/perlin-network/noise/crypto/ed25519 latest
go: finding github.com/perlin-network/noise/crypto latest
go get github.com/perlin-network/noise/crypto/ed25519: no matching versions for query "latest"
我也试过这个:
go get -u github.com/perlin-network/noise
错误:
go: finding github.com/oasislabs/ed25519 latest
go: finding golang.org/x/lint latest
go: finding golang.org/x/xerrors latest
go: finding golang.org/x/crypto latest
go: github.com/oasislabs/ed25519@v0.0.0-20210505154701-76d8c688d86e: parsing go.mod: unexpected module path "github.com/oasisprotocol/ed25519"
go: finding golang.org/x/net latest
go get: error loading module requirements
我是不是漏掉了什么?
目前在 perlin-network/noise
issue 287 中提及,自 2020 年 8 月以来,暂时没有任何答案(2021 年第 2 季度)。
另一种方法是:
- fork 存储库
perlin-network/noise
- 更新fork中的依赖
me/noise
- 在您的项目中使用
go mod replace
来切换存储库。
但所有这些都表明您自己 project uses go mod,因此请确保首先 go init myproject
,以便从这些依赖项管理功能中受益。
这样,就不需要 $GOPATH/src
.
我是 Go 语言的新手。我想使用此命令 go run main.go
.
我有这个错误:
cannot find module providing package github.com/perlin-network/noise/crypto/ed25519
我尝试使用以下方式安装它:
go get github.com/perlin-network/noise/crypto/ed25519
我收到这个错误:
go: finding github.com/perlin-network/noise/crypto/ed25519 latest
go: finding github.com/perlin-network/noise/crypto latest
go get github.com/perlin-network/noise/crypto/ed25519: no matching versions for query "latest"
我也试过这个:
go get -u github.com/perlin-network/noise
错误:
go: finding github.com/oasislabs/ed25519 latest
go: finding golang.org/x/lint latest
go: finding golang.org/x/xerrors latest
go: finding golang.org/x/crypto latest
go: github.com/oasislabs/ed25519@v0.0.0-20210505154701-76d8c688d86e: parsing go.mod: unexpected module path "github.com/oasisprotocol/ed25519"
go: finding golang.org/x/net latest
go get: error loading module requirements
我是不是漏掉了什么?
目前在 perlin-network/noise
issue 287 中提及,自 2020 年 8 月以来,暂时没有任何答案(2021 年第 2 季度)。
另一种方法是:
- fork 存储库
perlin-network/noise
- 更新fork中的依赖
me/noise
- 在您的项目中使用
go mod replace
来切换存储库。
但所有这些都表明您自己 project uses go mod,因此请确保首先 go init myproject
,以便从这些依赖项管理功能中受益。
这样,就不需要 $GOPATH/src
.