go get err:stream错误:流ID 7; NO_ERROR;从对等体接收[已关闭]

2guxujil  于 2023-09-28  发布在  Go
关注(0)|答案(1)|浏览(176)

**已关闭。**此问题需要debugging details。它目前不接受回答。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
4天前关闭。
Improve this question

go get -v github.com/microcosm-cc/bluemonday
go: downloading github.com/microcosm-cc/bluemonday v1.0.25
go: github.com/microcosm-cc/[email protected]: read "https:/goproxy.io/@v/v1.0.25.zip": stream error: stream ID 7; NO_ERROR; received from peer
go version go1.21.1 linux/amd64

尝试其他模块,它工作正常,但在bluemonday go get -v github.com/microcosm-cc/bluemonday success上失败

qij5mzcb

qij5mzcb1#

它看起来像是到GOPROXY的临时连接错误,而不是命令或软件包本身的问题。
如果你想放弃golang代理的任何连接问题,你可以使用这个env来禁用默认代理:
GOPRIVATE= github.com/microcosm-cc/bluemonday go get -x github.com/microcosm-cc/bluemonday
这样你就可以直接从github下载包,而不是从proxy.golang.org下载,请参阅:
https://go.dev/ref/mod#environment-variables

相关问题