查看已安装的包(带着后边的三个点)
# 列出所有已安装的包
go list ...
下载包
# 不指定版本下载
go get github.com/IBM/sarama
删除包
go clean -i github.com/IBM/sarama
修改版本
# 删除包
go clean -i github.com/IBM/sarama
# 指定版本下载
go get github.com/IBM/sarama@v1.42.0
文章来源地址https://www.toymoban.com/news/detail-820767.html
文章来源:https://www.toymoban.com/news/detail-820767.html
到了这里,关于【Go】依赖包管理的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!