After reading the guide on https://github.com/nsf/gocode, I tried the command go get -u -ldflags -H=windowsgui github.com/nsf/gocode. I don't get any response after this command.
I also found that there is a place in GoClipse that can let me input the path of GoCode. So, I think maybe I already have GoCode in my windows pc but what is its location?








go getwon't output anything unless there's an error.The location for anything you install with the go tools is
$GOPATH/bin,$GOPATHdepends on your environment.If you're not sure where it is, run
go envand it will print a list of the environment variables that Go uses, including GOPATH.