I don't think I'm the only one that might be confused by this.
I have a very simple Go Program, the only dependencies are.
import (
"fmt"
"time"
)
I used "go build myprogram.go" , and get a binary that runs fine (since I have GO installed)
However, if someone else does not have GO installed they seem to get errors.
For Example:
open c:\go\lib\time\zoneinfo.zip: The system cannot find the path specified.
panic: time: missing Location in call to Time.In
What do I need to do to include third party libraries in the build ?
I'd like to generate a Binary that will run on any Platform without worrying about dependencies