简体   繁体   中英

how to check the missing dependencies in golang

How can I know what are the missing dependencies in a go project? Now the only way I know is to run the go build command and follow the error messages.

But is there any more efficient way to do that such as:

./a.out proj

and the return maybe like:

missing dependencies: github.com/go-sql-driver/mysql github.com/foo/bar .... Does go build support this function?

Since Go is compiled language so in order to see if your code has an error or missing dependencies is by compiling your code.
You can use go get as an alternative of go build to see your missing dependencies.

some reference from doc

Go compiles quickly to machine code yet has the convenience of garbage collection and the power of run-time reflection. It's a fast, statically typed, compiled language that feels like a dynamically typed, interpreted language.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM