Search code examples
gogo-modules

cannot find package "rsc.io/quote"


I am following the tutorial (https://golang.org/doc/tutorial/getting-started) to get started using Go and I've already run into a problem. When I run the following code:

package main

import "fmt"

import "rsc.io/quote"

func main() {
    fmt.Println(quote.Go())
}

I get the following error message in my console:

C:\Users\myname\Documents\Work\GO\hello>go run hello.go
hello.go:7:8: cannot find package "rsc.io/quote" in any of:
        C:\Program Files\Go\src\rsc.io\quote (from $GOROOT)
        C:\Users\myname\go\src\rsc.io\quote (from $GOPATH)

I am guessing this is an issue with how/ where I installed Go, can anybody shed some light please?

Thanks


Solution

  • The go tool with module support automatically downloads and installs dependencies. But for it to work, you must initialize your module.

    It's not enough to save the source in a .go file and run with go run hello.go, a go.mod file must exist.

    To init your module, do as indicated in the tutorial:

    go mod init hello
    

    Output should be:

    go: creating new go.mod: module hello
    go: to add module requirements and sums:
            go mod tidy
    

    Starting with go 1.16, you also have to run

    go mod tidy
    

    which will download the rsc.io/quote package automatically:

    go: finding module for package rsc.io/quote
    go: found rsc.io/quote in rsc.io/quote v1.5.2
    

    So next running

    go run hello.go
    

    Will output:

    Don't communicate by sharing memory, share memory by communicating.