On Mon, Nov 26, 2018 at 8:08 PM Freddy Martinez <freddy311...@gmail.com> wrote:
>
> Hey Guys.. I'm really new with go (only 4 days) and I'm trying to install 
> graphql-go and I have this error
>
>
> freddy@Freddys-MacBook-Pro:~/go$ go get github.com/graphql-go/graphql
>
> # internal/race
>
> compile: version "go1.11" does not match go tool version "go1.11.2"
>
> # unicode/utf8
>
> compile: version "go1.11" does not match go tool version "go1.11.2"
>
> # errors
>
> compile: version "go1.11" does not match go tool version "go1.11.2"
>
> # runtime/internal/sys
>
> compile: version "go1.11" does not match go tool version "go1.11.2"
>
> # math/bits
>
> compile: version "go1.11" does not match go tool version "go1.11.2"
>
> # encoding
>
> compile: version "go1.11" does not match go tool version "go1.11.2"
>
> # unicode/utf16
>
> compile: version "go1.11" does not match go tool version "go1.11.2"
>
> # github.com/graphql-go/graphql/language/kinds
>
> compile: version "go1.11" does not match go tool version "go1.11.2"
>
> # github.com/graphql-go/graphql/language/source
>
> compile: version "go1.11" does not match go tool version "go1.11.2"
>
> # unicode
>
> compile: version "go1.11" does not match go tool version "go1.11.2"
>
> # internal/cpu
>
> compile: version "go1.11" does not match go tool version "go1.11.2"
>
> # runtime/internal/atomic
>
> compile: version "go1.11" does not match go tool version "go1.11.2"
>
> # sync/atomic
>
> compile: version "go1.11" does not match go tool version "go1.11.2"
>
>
>
> What does this error means ?

It means that you are using compiler version 1.11 with pre-built
standard library packages built by version 1.11.2.  I'm not sure how
that could happen, unless perhaps you installed 1.11, copied the go
tools somewhere, then installed 1.11.2, then copied them back.  I
suggest that you remove your current installation entirely and start
afresh.

Ian

-- 
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+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to