miketheprogrammer / go-thrust

Cross Platform UI Kit powered by Blink/V8/Chromium Content Lib
MIT License
445 stars 34 forks source link

setup instructions need work #51

Closed taf2 closed 9 years ago

taf2 commented 9 years ago

go version go1.4.2 darwin/amd64

go get github.com/miketheprogrammer/go-thrust can't load package: package github.com/miketheprogrammer/go-thrust: no buildable Go source files in /Users/taf2/work/golibs/src/github.com/miketheprogrammer/go-thrust

go get -v github.com/alexcesaro/log github.com/alexcesaro/log

go-thrust install bash: go-thrust: command not found

miketheprogrammer commented 9 years ago

Did you ever get this working?

taf2 commented 9 years ago

Yes, I checked the code out and was able to run go build to create the go-thrust binary. The README is incorrect though right?

sharpner commented 9 years ago

the problem is that you're missing $GOPATH/bin in your $PATH environment variable. https://golang.org/cmd/go/#hdr-GOPATH_environment_variable

This has nothing to do with this project in general.

tehbilly commented 9 years ago

can't load package: package github.com/miketheprogrammer/go-thrust: no buildable Go source files in ...

This doesn't point to a path issue, but more that for some reason go wasn't able to find anything in $GOPATH/src/github.com/miketheprogrammer/go-thrust. I've had this happen due to network issues, filesystem issues, whatever. I always recommend people use the -v flag to see what's going on.

Either way, I'd say this issue is resolved, as without more information it's pretty impossible to determine what caused that in the first place.