Closed dryaf closed 7 years ago
Hello,
Do you have several versions of go installed on your system? I'm not sure, but the error looks like you're using go1.8 and the stdlib is from earlier versions of go. I've searched for similar issues, and the general recommendation is to check the go installation / configuration. For example: https://github.com/gorilla/websocket/issues/225
Hi,
thank you for the hint :) I had an old go version installed via the pkg from the website and installed the new one with homebrew.
mystery solved!
I am experiencing same issue using version 1.7.6
@hmarcelodn, Are you sure you are getting the same errors using 1.7.6? For example:
src/github.com/disintegration/bebop/vendor/golang.org/x/net/http2/go18.go:21: undefined: http.Pusher
The file go18.go
has a build tag for +build go1.8
so it isn't used for go 1.7.6.
Please check your go installation and go version
output. Most probably you have a conflict between two go versions installed if you get the same errors messages.
I just tried getting the project with golang 1.8.1 and got ...
any idea why this could happen?