我是 Go 语言的新手。我想使用此命令测试Go语言中的一些代码。这些代码在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
我错过了什么吗?
犯罪嫌疑人X
相关分类