作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用Go构建api,并且尝试运行从udemy class 获得的来自GitHub的现有文件。我得到这种输出:
C:\goworkspace\src\grpc-go-course-master\blog\blog_client>go run client.go
client.go:4:2: cannot find package "context" in any of:
C:\go\src\context (from $GOROOT)
C:\goworkspace\src\context (from $GOPATH)
..\..\..\golang.org\x\net\http2\not_go111.go:10:2: cannot find package "net/http/httptrace" in any of:
C:\go\src\net\http\httptrace (from $GOROOT)
C:\goworkspace\src\net\http\httptrace (from $GOPATH)
最佳答案
为了下载依赖项,您必须使用go get
命令:
go get -v -u github.com/alessiosavi/GoUtils
go.mod
文件,则必须输入:
go clean
go build
go.mode
文件中列出的依赖项。
go get -v -u all
关于go - 如何从github导入包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58114452/
我是一名优秀的程序员,十分优秀!