Hi,I want to separate go code downloaded elsewhere and my own code. So I setup two separate directories for them both and my gopath contains two directories. Under Windows, I fount the syntax to beset GOPATH=D:\Go\Extn;D:\Go\Intn
However, I'm having problem compiling my code into executable under Windows.When I tried "go build mypath\mycode.go", it builds OK without any complains, but When I tried "go install mypath\mycode.go", I get:
go install: no install location for directory D:\Go\Intn\src\mypath outside GOPATHPlease help.Thanks
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Please help.Thanks
go install takes a package import path, not a Go source file path.