Goland 编译时提示 cannot find package “golang.org/x/[…]” 的解决办法

参考:https://www.cnblogs.com/littermonster/articles/12671284.html

编译项目时,很多Go的依赖包都无法通过go get得到,如下图:

Goland 编译时提示 cannot find package “golang.org/x/[…]” 的解决办法_第1张图片

解决方法:

打开cmd命令窗口,进入到 golang.org/x 路径下,执行如下命令:

git clone https://github.com/golang/net.git 

注意:

go 在 github 上建立了一个镜像库,如https://github.com/golang/net对应的是https://golang.org/x/net,其他同理。

Goland 编译时提示 cannot find package “golang.org/x/[…]” 的解决办法_第2张图片

                                                                                            下载成功~ 

你可能感兴趣的:(Golang,golang)