**已关闭。**此问题需要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
上失败
1条答案
按热度按时间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