sourcegraph/thyme

go get thyme - no results

dmgig opened this issue · 2 comments

dmgig commented

Not sure why I'm unable to get thyme, go is installed with homebrew:

dgig@mymac:~/go$ go version
go version go1.6.2 darwin/amd64
dgig@mymac:~/go$ echo $GOPATH
/Users/dgig/go
dgig@mymac:~/go$ go get -u github.com/sourcegraph/thyme/cmd/thyme
dgig@mymac:~/go$
dgig@mymac:~/go$ thyme
-bash: thyme: command not found

I just get no result whatsoever

I am not sure if this might help. I found a random golang program and tried to install it with go get and got this result:

dgig@mymac:~/go$ go get github.com/mattn/go-gtk/gtk
# pkg-config --cflags pango
Package pango was not found in the pkg-config search path.
Perhaps you should add the directory containing `pango.pc'
to the PKG_CONFIG_PATH environment variable
No package 'pango' found
pkg-config: exit status 1
# pkg-config --cflags gdk-pixbuf-2.0
Package gdk-pixbuf-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gdk-pixbuf-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gdk-pixbuf-2.0' found
pkg-config: exit status 1

Is $GOPATH/bin included in your path? Do echo $PATH and make sure it's there.

dmgig commented

Yes, that was it. Thank you for your help. I look forward to using Thyme.