Ainar-G Asked:2020-04-26 20:49:57 +0800 CST2020-04-26 20:49:57 +0800 CST 2020-04-26 20:49:57 +0800 CST 递归打印包依赖 772 如何在Go中递归打印包依赖项?也就是依赖的依赖等等? golang 1 个回答 Voted Best Answer Ainar-G 2020-04-26T20:49:57+08:002020-04-26T20:49:57+08:00 你可以使用命令go list。例子: $ go list -f '{{range .Deps}}{{printf "%s\n" .}}{{end}}' bytes errors internal/bytealg internal/cpu internal/race internal/reflectlite io runtime runtime/internal/atomic runtime/internal/math runtime/internal/sys sync sync/atomic unicode unicode/utf8 unsafe $ 文档: https ://golang.org/cmd/go/#hdr-List_packages_or_modules 。
你可以使用命令
go list
。例子:文档: https ://golang.org/cmd/go/#hdr-List_packages_or_modules 。