Go 1.11 includes preliminary support for versioned modules as proposed here. Modules are an experimental opt-in feature in Go 1.11, with the plan of incorporating feedback and finalizing the feature for Go 1.13. Even though some details may change, future releases will support modules defined using Go 1.11 or 1.12.
The initial prototype (vgo
) was announced in February 2018. In July 2018, support for versioned modules landed in the main repository. Go 1.11 was released in August 2018.
Please provide feedback on modules via existing or new issues and via experience reports.
The “Quick Start” and “New Concepts” sections are particularly important for someone who is starting to work with modules. The “How to...” sections cover more details on mechanics. The largest quantity of content on this page is in the FAQs answering more specific questions; it can be worthwhile to at least skim the FAQ one-liners listed here.
import "./subdir"
?The details are covered in the remainder of this page, but here is a simple example of creating a module from scratch.
Create a directory outside of your GOPATH:
$ mkdir -p /tmp/scratchpad/hello $ cd /tmp/scratchpad/hello
Initialize a new module:
$ go mod init github.com/you/hello go: creating new go.mod: module github.com/you/hello
Write your code:
$ cat <<EOF > hello.go package main import ( "fmt" "rsc.io/quote" ) func main() { fmt.Println(quote.Hello()) } EOF
Build and run:
$ go build $ ./hello Hello, world.
The go.mod
file was updated to include explicit versions for your dependencies, where v1.5.2
here is a semver tag:
$ cat go.mod module github.com/you/hello require rsc.io/quote v1.5.2
Note there was no go get
required in the example above.
Your typical day-to-day workflow can be:
.go
code as needed.go build
or go test
will automatically add new dependencies as needed to satisfy imports (updating go.mod
and downloading the new dependencies).go get foo@v1.2.3
, go get foo@master
, go get foo@e3702bed2
, or by editing go.mod
directly.A brief tour of other common functionality you might use:
go list -m all
— View final versions that will be used in a build for all direct and indirect dependencies (details)go list -u -m all
— View available minor and patch upgrades for all direct and indirect dependencies (details)go get -u
or go get -u=patch
— Update all direct and indirect dependencies to latest minor or patch upgrades (details)go build ./...
or go test ./...
— Build or test all packages in the module when run from the module root directory (details)go mod tidy
— Prune any no-longer-needed dependencies from go.mod
and add any dependencies needed for other combinations of OS, architecture, and build tags (details)replace
directive or gohack
— Use a fork, local copy or exact version of a dependency (details)go mod vendor
— Optional step to create a vendor
directory (details)After reading the next four sections on “New Concepts”, you will have enough information to get started with modules for most projects. It is also useful to review the Table of Contents above (including the FAQ one-liners there) to familiarize yourself with the list of more detailed topics.
These sections provide a high-level introduction to the main new concepts. For more details and rationale, please see this 40-minute introductory video by Russ Cox describing the philosophy behind the design, the official proposal document, or the more detailed initial vgo blog series.
A module is a collection of related Go packages that are versioned together as a single unit.
Modules record precise dependency requirements and create reproducible builds.
Most often, a version control repository contains exactly one module defined in the repository root. (Multiple modules are supported in a single repository, but typically that would result in more work on an on-going basis than a single module per repository).
Summarizing the relationship between repositories, modules, and packages:
Modules must be semantically versioned according to semver, usually in the form v(major).(minor).(patch)
, such as v0.1.0
, v1.2.3
, or v1.5.0-rc.1
. The leading v
is required. If using Git, tag released commits with their versions. Public and private module repositories and proxies are becoming available (see FAQ below).
A module is defined by a tree of Go source files with a go.mod
file in the tree's root directory. Module source code may be located outside of GOPATH. There are four directives: module
, require
, replace
, exclude
.
Here is an example go.mod
file defining the module github.com/my/thing
:
module github.com/my/thing require ( github.com/some/dependency v1.2.3 github.com/another/dependency/v4 v4.0.0 )
A module declares its identity in its go.mod
via the module
directive, which provides the module path. The import paths for all packages in a module share the module path as a common prefix. The module path and the relative path from the go.mod
to a package‘s directory together determine a package’s import path.
For example, if you are creating a module for a repository github.com/my/repo
that will contain two packages with import paths github.com/my/repo/foo
and github.com/my/repo/bar
, then the first line in your go.mod
file typically would declare your module path as module github.com/my/repo
, and the corresponding on-disk structure could be:
repo/ ├── go.mod ├── bar │ └── bar.go └── foo └── foo.go
In Go source code, packages are imported using the full path including the module path. For example, if a module declared its identity in its go.mod
as module example.com/my/module
, a consumer could do:
import "example.com/my/module/mypkg"
This imports package mypkg
from the module example.com/my/module
.
exclude
and replace
directives only operate on the current (“main”) module. exclude
and replace
directives in modules other than the main module are ignored when building the main module. The replace
and exclude
statements therefore allow the main module complete control over its own build, without also being subject to complete control by dependencies. (See FAQ below for discussion of when to use a replace
directive).
If you add a new import to your source code that is not yet covered by a require
in go.mod
, most go commands like ‘go build’ and ‘go test’ will automatically look up the proper module and add the highest version of that new direct dependency to your module‘s go.mod
as a require
directive. For example, if your new import corresponds to dependency M whose latest tagged release version is v1.2.3
, your module’s go.mod
will end up with require M v1.2.3
, which indicates module M is a dependency with allowed version >= v1.2.3 (and < v2, given v2 is considered incompatible with v1).
The minimal version selection algorithm is used to select the versions of all modules used in a build. For each module in a build, the version selected by minimal version selection is always the semantically highest of the versions explicitly listed by a require
directive in the main module or one of its dependencies.
As an example, if your module depends on module A which has a require D v1.0.0
, and your module also depends on module B which has a require D v1.1.1
, then minimal version selection would choose v1.1.1
of D to include in the build (given it is the highest listed require
version). This selection of v1.1.1
remains consistent even if some time later a v1.2.0
of D becomes available. This is an example of how the modules system provides 100% reproducible builds. When ready, the module author or user might choose to upgrade to the latest available version of D or choose an explicit version for D.
For a brief rationale and overview of the minimal version selection algorithm, see the “High Fidelity Builds” section of the official proposal, or see the more detailed vgo
blog series.
To see a list of the selected module versions (including indirect dependencies), use go list -m all
.
See also the “How to Upgrade and Downgrade Dependencies” section below and the “How are versions marked as incompatible?” FAQ below.
For many years, the official Go FAQ has included this advice on package versioning:
“Packages intended for public use should try to maintain backwards compatibility as they evolve. The Go 1 compatibility guidelines are a good reference here: don't remove exported names, encourage tagged composite literals, and so on. If different functionality is required, add a new name instead of changing an old one. If a complete break is required, create a new package with a new import path.”
The last sentence is especially important — if you break compatibility, you should change the import path of your package. With Go 1.11 modules, that advice is formalized into the import compatibility rule:
“If an old package and a new package have the same import path, the new package must be backwards compatible with the old package.”
Recall semver requires a major version change when a v1 or higher package makes a backwards incompatible change. The result of following both the import compatibility rule and semver is called Semantic Import Versioning, where the major version is included in the import path — this ensures the import path changes any time the major version increments due to a break in compatibility.
As a result of Semantic Import Versioning, code opting in to Go modules must comply with these rules:
v1.2.3
)./vN
at the end of the module paths used in go.mod
files (e.g., module github.com/my/mod/v2
, require github.com/my/mod/v2 v2.0.0
) and in the package import path (e.g., import "github.com/my/mod/v2/mypkg"
).In general, packages with different import paths are different packages. For example, math/rand
is a different package than crypto/rand
. This is also true if different import paths are due to different major versions appearing in the import path. Thus example.com/my/mod/mypkg
is a different package than example.com/my/mod/v2/mypkg
, and both may be imported in a single build, which among other benefits helps with diamond dependency problems and also allows a v1 module to be implemented in terms of its v2 replacement or vice versa.
See the “Module compatibility and semantic versioning” section of the go
command documentation for more details on Semantic Import Versioning, and see https://semver.org for more about semantic versioning.
This section so far has been focused on code that has opted in to modules and imports other modules. However, putting major versions in import paths for v2+ modules could create incompatibilities with older versions of Go, or with code that has not yet opted in to modules. To help with this, there are three important transitional special cases or exceptions to the behavior and rules described above. These transitional exceptions will become less important over time as more packages opt in to modules.
Three Transitional Exceptions
gopkg.in
Existing code that uses import paths starting with gopkg.in
(such as gopkg.in/yaml.v1
and gopkg.in/yaml.v2
) can continue to use those forms for their module paths and import paths even after opting in to modules.
‘+incompatible’ when importing non-module v2+ packages
A module can import a v2+ package that has not opted in to modules itself. A non-module v2+ package that has a valid v2+ semver tag will be recorded with an +incompatible
suffix in the importing module's go.mod
file. The +incompatible
suffix indicates that even though the v2+ package has a valid v2+ semver tag such as v2.0.0
, the v2+ package has not actively opted in to modules and hence that v2+ package is assumed to have not been created with an understanding of the implications of Semantic Import Versioning and how to use major versions in import paths. Therefore, when operating in module mode, the go
tool will treat a non-module v2+ package as an (incompatible) extension of the v1 version series of the package and assume the package has no awareness of Semantic Import Versioning, and the +incompatible
suffix is an indication that the go
tool is doing so.
“Minimal module compatibility” when module mode is not enabled
To help with backwards compatibility, Go versions 1.9.7+, 1.10.3+ and 1.11 have been updated to make it easier for code built with those releases to be able to properly consume v2+ modules without requiring modification of pre-existing code. This behavior is called “minimal module compatibility”, and it only takes effect when full module mode is disabled for the go
tool, such as if such as you have set GO111MODULE=off
in Go 1.11, or are using Go versions 1.9.7+ or 1.10.3+. When relying on this “minimal module compatibility” mechanism in Go 1.9.7+, 1.10.3+ and 1.11, a package that has not opted in to modules would not include the major version in the import path for any imported v2+ modules. In contrast, a package that has opted in to modules must include the major version in the import path to import any v2+ modules (in order to properly import the v2+ module when the go
tool is operating in full module mode with full awareness of Semantic Import Versioning).
For the exact mechanics required to release a v2+ module, please see the “Releasing Modules (v2 or Higher)” section below.
To use modules, two install options are:
master
branch.Once installed, you can then activate module support in one of two ways:
go
command in a directory outside of the $GOPATH/src
tree, with a valid go.mod
file in the current directory or any parent of it and the environment variable GO111MODULE
unset (or explicitly set to auto
).go
command with GO111MODULE=on
environment variable set.To create a go.mod
for an existing project:
Navigate to the root of the module's source tree outside of GOPATH:
$ cd <project path outside $GOPATH/src> # e.g., cd ~/projects/hello
Note that outside of GOPATH, you do not need to set GO111MODULE
to activate module mode.
Alternatively, if you want to work in your GOPATH:
$ export GO111MODULE=on # manually active module mode $ cd $GOPATH/src/<project path> # e.g., cd $GOPATH/src/you/hello
Create the initial module definition and write it to the go.mod
file:
$ go mod init
This step converts from any existing dep
Gopkg.lock
file or from any of the other nine total supported dependency formats, adding require statements to match the existing configuration.
go mod init
will often be able to use auxiliary data (such as VCS meta-data) to automatically determine the appropriate module path, but if go mod init
states it can not automatically determine the module path, or if you need to otherwise override that path, you can supply the module path as an optional argument to go mod init
, for example:
$ go mod init github.com/my/repo
Note that if your dependencies include v2+ modules, or if you are initializing a v2+ module, then after running go mod init
you might also need to edit your go.mod
and .go
code to add /vN
to import paths and module paths as described in the “Semantic Import Versioning” section above. This applies even if go mod init
automatically converted your dependency information from dep
or other dependency managers. (Because of this, after running go mod init
, you typically should not run go mod tidy
until you have successfully run go build ./...
or similar, which is the sequence shown in this section).
Build the module. When executed from the root directory of a module, the ./...
pattern matches all the packages within the current module. go build
will automatically add missing or unconverted dependencies as needed to satisfy imports for this particular build invocation:
$ go build ./...
Test the module as configured to ensure that it works with the selected versions:
$ go test ./...
(Optional) Run the tests for your module plus the tests for all direct and indirect dependencies to check for incompatibilities:
$ go test all
Prior to tagging a release, see the “How to Prepare for a Release” section below.
For more information on all of these topics, the primary entry point to the official modules documentation is available on golang.org.
Day-to-day upgrading and downgrading of dependencies should be done using ‘go get’, which will automatically update the go.mod
file. Alternatively, you can edit go.mod
directly.
In addition, go commands like ‘go build’, ‘go test’, or even ‘go list’ will automatically add new dependencies as needed to satisfy imports (updating go.mod
and downloading the new dependencies).
To view available minor and patch upgrades for all direct and indirect dependencies, run go list -u -m all
.
To upgrade to the latest version for all direct and indirect dependencies of the current module:
go get -u
to use the latest minor or patch releasesgo get -u=patch
to use the latest patch releasesTo upgrade or downgrade to a more specific version, ‘go get’ allows version selection to be overridden by adding an @version suffix or “module query” to the package argument, such as go get foo@v1.6.2
, go get foo@e3702bed2
, or go get foo@'<v1.6.2'
.
go get foo
updates to the latest version with a semver tag, or the the latest known commit if there are no semver tags (details). go get foo
is equivalent to go get foo@latest
— in other words, @latest
is the default if no @
version is specified.
Note that a -u
in go get -u foo
and go get -u foo@latest
also upgrades all the direct and indirect dependencies of foo
. A common starting point is instead go get foo
or go get foo@latest
without a -u
(and after things are working, consider go get -u=patch foo
, go get -u foo
, go get -u
, or go get -u=patch
).
Using a branch name such as go get foo@master
is one way to obtain the latest commit regardless of whether or not it has a semver tag.
In general, module queries that do not resolve to a semver tag will be recorded as pseudo-versions in the go.mod
file.
See the “Module-aware go get” and “Module queries” sections of the go
command documentation for more information on the topics here.
Modules are capable of consuming packages that have not yet opted into modules, including recording any available semver tags in go.mod
and using those semver tags to upgrade or downgrade. Modules can also consume packages that do not yet have any proper semver tags (in which case they will be recorded using pseudo-versions in go.mod
).
After upgrading or downgrading any dependencies, you may then want to run the tests again for all packages in your build (including direct and indirect dependencies) to check for incompatibilities:
$ go test all
Best practices for creating a release of a module are expected to emerge as part of the initial modules experiment. Many of these might end up being automated by a future ‘go release’ tool.
Some current suggested best practices to consider prior to tagging a release:
Run go mod tidy
to possibly prune any extraneous requirements (as described here) and also ensure your current go.mod reflects all possible build tags/OS/architecture combinations (as described here).
go build
and go test
will not remove dependencies from go.mod
that are no longer required and only update go.mod
based on the current build invocation's tags/OS/architecture.Run go test all
to test your module (including running the tests for your direct and indirect dependencies) as a way of validating that the currently selected packages versions are compatible.
go test all
has been re-defined to be more useful to include all the packages in the current module, plus all the packages they depend on through a sequence of one or more imports, while excluding packages that don't matter in the current module.Ensure your go.sum
file is committed along with your go.mod
file. See FAQ below for more details and rationale.
Your new module release becomes available to consumers once you push the new release tags.
If you are releasing a v2 or higher module, please first review the discussion in the “Semantic Import Versioning” section above, which includes why major versions are included in the module path and import path for v2+ modules, as well as how Go versions 1.9.7+ and 1.10.3+ have been updated to simplify that transition.
Note that if you are adopting modules for the first time for a pre-existing repository or set of packages that have already been tagged v2.0.0
or higher before adopting modules, then the recommended best practice is to increment the major version when first adopting modules. For example, if you are the author of foo
, and the latest tag for the foo
repository is v2.2.2
, and foo
has not yet adopted modules, then the best practice would be to use v3.0.0
for the first release of foo
to adopt modules (and hence the first release of foo
to contain a go.mod
file). Incrementing the major version in this case provides greater clarity to consumers of foo
, allows for additional non-module patches or minor releases on the v2 series of foo
if needed, and provides a strong signal for a module-based consumer of foo
that different major versions result if you do import "foo"
and a corresponding require foo v2.2.2+incompatible
, vs. import "foo/v3"
and a corresponding require foo/v3 v3.0.0
. (Note that this advice regarding incrementing the major version when first adopting modules does not apply to pre-existing repos or packages whose latest versions are v0.x.x or v1.x.x).
There are two alternative mechanisms to release a v2 or higher module. Note that with both techniques, the new module release becomes available to consumers when the module author pushes the new tags. Using the example of creating a v3.0.0
release, the two options are:
Major branch: Update the go.mod
file to include a /v3
at the end of the module path in the module
directive (e.g., module github.com/my/module/v3
). Update import statements within the module to also use /v3
(e.g., import "github.com/my/module/v3/mypkg"
). Tag the release with v3.0.0
.
v3.*.*
commits for the module on a separate v3 branch.v3.0.0
on master, that is a viable option. (However, be aware that introducing an incompatible API change in master
can cause issues for non-modules users who issue a go get -u
given the go
tool is not aware of semver prior to Go 1.11 or when module mode is not enabled in Go 1.11+).Major subdirectory: Create a new v3
subdirectory (e.g., my/module/v3
) and place a new go.mod
file in that subdirectory. The module path must end with /v3
. Copy or move the code into the v3
subdirectory. Update import statements within the module to also use /v3
(e.g., import "github.com/my/module/v3/mypkg"
). Tag the release with v3.0.0
.
goforward
. Please see here for more details and rationale, along with a functioning initial version of goforward
.See https://research.swtch.com/vgo-module for a more in-depth discussion of these alternatives.
This section attempts to briefly enumerate the major decisions to be made when migrating to modules as well as list other migration-related topics. References are generally provided to other sections for more details.
This material is primarily based on best practices that have emerged from the community as part of the modules experiment; this is therefore a work-in-progress section that will improve over time as the community gains more experience.
Summary:
Migration topics:
go mod init
automatically translates the required information from dep, glide, govendor, godep and 5 other pre-existing dependency managers into a go.mod
file that produces the equivalent build.module
directive in the converted go.mod
includes the appropriate /vN
(e.g., module foo/v3
)./vN
to the require
statements that go mod init
generates after translating from a prior dependency manager. See the “How to Define a Module” section above for more details.go mod init
will not edit your .go
code to add any required /vN
to import statements. See the “Semantic Import versioning” and “Releasing Modules (v2 or Higher)” sections above for the required steps, including some options around community tools to automate the conversion.go mod vendor
. Therefore, vendoring is one way for a module to provide dependencies to older versions of Go that do not fully understand modules. See the vendoring FAQ and the go
command documentation for more details.go get -u foo
. If you are publishing a module foo
, consider dropping the -u
in instructions for modules-based consumers.-u
asks the go
tool to upgrade all the direct and indirect dependencies of foo
.go get -u foo
later, but there are more benefits of “High Fidelity Builds” if -u
is not part of the initial install instructions. See “How to Upgrade and Downgrade Dependencies” for more details.go get -u foo
does still work, and can still be a valid choice for install instructions.go get foo
is not strictly needed for a module-based consumer.import "foo"
is sufficient. (Subsequent commands like go build
or go test
will automatically download foo
and update go.mod
as needed).vendor
directory by default.go
tool, vendor
is not strictly required when consuming a module (given the information contained in go.mod
and the cryptographic checksums in go.sum
), but some pre-existing install instructions assume the go
tool will use vendor
by default. See the vendoring FAQ for more details.go get foo/...
might have issues in some cases (see discussion in #27215).v2.0.1
and have not yet adopted modules, then you would use v3.0.0
for the first release that adopts modules. See the “Releasing Modules (v2 or Higher)” section above for more details.foo
and foo/v3
might end up in a single build).foo
and package-level state for foo/v3
) as well as each major version will run its own init
function.go.mod
. Modules can consume packages that do not yet have any proper semver tags. See FAQ below for more details.+incompatible
suffix if the imported v2+ package has valid semver tags. See FAQ below for more details.Non-module code consuming v0 and v1 modules:
Non-module code consuming v2+ modules:
Go versions 1.9.7+, 1.10.3+ and 1.11 have been updated so that code built with those releases can properly consume v2+ modules without requiring modification of pre-existing code as described in the “Semantic Import versioning” and “Releasing Modules (v2 or Higher)” sections above.
Go versions prior to 1.9.7 and 1.10.3 can consume v2+ modules if the v2+ module was created following the “Major subdirectory” approach outlined in the “Releasing Modules (v2 or Higher)” section.
For authors of pre-existing v2+ packages considering opting in to modules, one way to summarize the alternative approaches is as a choice between three top-level strategies . Each choice then has follow-on decisions and variations (as outlined above). These alternative top-level strategies are:
Require clients to use Go versions 1.9.7+, 1.10.3+, or 1.11+.
The approach uses the “Major Branch” approach and relies on the “minimal module awareness” that was backported to 1.9.7 and 1.10.3. See the “Semantic Import versioning” and “Releasing Modules (v2 or Higher)” sections above for more details.
Allow clients to use even older Go versions like Go 1.8.
This approach uses the “Major Subdirectory” approach and involves creating a subdirectory such as /v2
or /v3
. See the “Semantic Import versioning” and “Releasing Modules (v2 or Higher)” sections above for more details.
Wait on opting in to modules.
In this strategy, things continue to work with client code that has opted in to modules as well as with client code that has not opted in to modules. As time goes by, Go versions 1.9.7+, 1.10.3+, and 1.11+ will be out for an increasingly longer time period, and at some point in the future, it becomes more natural or client-friendly to require Go versions 1.9.7+/1.10.3+/1.11+, and at that point in time, you can implement strategy 1 above (requiring Go versions 1.9.7+, 1.10.3+, or 1.11+) or even strategy 2 above (though if you are ultimately going to go with strategy 2 above in order to support older Go versions like 1.8, then that is something you can do now).
go help modules
for more about modules. (This is the main entry point for modules topics via go help
)go help mod
for more about the go mod
command.go help module-get
for more about the behavior of go get
when in module-aware mode.go help goproxy
for more about the module proxy, including a pure file-based option via a file:///
URL.vgo
by Russ Cox (first posted February 20, 2018)vgo
blog series, along with some of the history and process behind the proposalAs part of the proposal, prototype, and beta processes, there have been over 400 issues created by the overall community. Please continue to supply feedback.
Here is a partial list of some of the larger changes and improvements, almost all of which were primarily based on feedback from the community:
go get -u=patch
to update all transitive dependencies to the latest available patch-level versions on the same minor version (discussion, documentation)go mod download
(#26610)The require
directive allows any module to declare that it should be built with version >= x.y.z of a dependency D (which may be specified due to incompatibilities with version < x.y.z of module D). Empirical data suggests this is the dominant form of constraints used in dep
and cargo
. In addition, the top-level module in the build can exclude
specific versions of dependencies or replace
other modules with different code. See the full proposal for more details and rationale.
One of the key goals of the versioned modules proposal is to add a common vocabulary and semantics around versions of Go code for both tools and developers. This lays a foundation for future capabilities to declare additional forms of incompatibilities, such as possibly:
vgo
blog seriesIn general, modules are opt-in for Go 1.11, so by design old behavior is preserved by default.
Summarizing when you get the old 1.10 status quo behavior vs. the new opt-in modules-based behavior:
go.mod
— defaults to modules behaviorauto
— default behavior aboveon
— force module support on regardless of directory locationoff
— force module support off regardless of directory locationYes. Two packages however may not depend on each other (this is a build constraint).
A module can depend on a different major version of itself: by-and-large, this is comparable to depending on a different module.
go get
fail with error cannot find main module
?This occurs when you have set GO111MODULE=on
, but are not inside of a file tree with a go.mod
when you run go get
.
The simplest solution is to leave GO111MODULE
unset (or equivalently explicitly set to GO111MODULE=auto
), which avoids this error.
Recall one of the primary reason modules exist is to record precise dependency information. This dependency information is written to your current go.mod
. If you are not inside of a file tree with a go.mod
but you have told the go get
command to operate in module mode by setting GO111MODULE=on
, then running go get
will result in the error cannot find main module
because there is no go.mod
available to record dependency information.
Solution alternatives include:
Leave GO111MODULE
unset (the default, or explicitly set GO111MODULE=auto
), which results in friendlier behavior. This will give you Go 1.10 behavior when you are outside of a module and hence will avoid go get
reporting cannot find main module
.
Leave GO111MODULE=on
, but as needed disable modules temporarily and enable Go 1.10 behavior during go get
, such as via GO111MODULE=off go get example.com/cmd
. This can be turned into a simple script or shell alias such as alias oldget='GO111MODULE=off go get'
Create a temporary go.mod
file that is then discarded. This has been automated by a simple shell script by @rogpeppe. This script allows version information to optionally be supplied via vgoget example.com/cmd[@version]
. (This can be a solution for avoiding the error cannot use path@version syntax in GOPATH mode
).
gobin
is a module-aware command to install and run main packages. By default, gobin
installs/runs main packages without first needing to manually create a module, but with the -m
flag it can be told to use an existing module to resolve dependenci es. Please see the gobin
README and FAQ for details and additional use cases.
Create a go.mod
you use to track your globally installed tools, such as in ~/global-tools/go.mod
, and cd
to that directory prior to running go get
or go install
for any globally installed tools.
Create a go.mod
for each tool in separate directories, such as ~/tools/gorename/go.mod
and ~/tools/goimports/go.mod
, and cd
to that appropriate directory prior to running go get
or go install
for the tool.
This current limitation will be resolved. However, the primary issue is that modules are currently opt-in, and a full solution will likely wait until GO111MODULE=on becomes the default behavior. See #24250 for more discussion, including this comment:
This clearly must work eventually. The thing I‘m not sure about is exactly what this does as far as the version is concerned: does it create a temporary module root and go.mod, do the install, and then throw it away? Probably. But I’m not completely sure, and for now I didn't want to confuse people by making vgo do things outside go.mod trees. Certainly the eventual go command integration has to support this.
This FAQ has been discussing tracking globally installed tools.
If instead you want to track the tools required by a specific module, see the next FAQ.
If you:
stringer
) while working on a module, andgo.mod
filethen one currently recommended approach is to add a tools.go
file to your module that includes import statements for the tools of interest (such as import _ "golang.org/x/tools/cmd/stringer"
), along with a // +build tools
build constraint. The import statements allow the go
command to precisely record the version information for your tools in your module's go.mod
, while the // +build tools
build constraint prevents your normal builds from actually importing your tools.
For a concrete example of how to do this, please see this “Go Modules by Example” walkthrough.
A discussion of the approach along with an earlier concrete example of how to do this is in this comment in #25922.
The brief rationale (also from #25922):
I think the tools.go file is in fact the best practice for tool dependencies, certainly for Go 1.11.
I like it because it does not introduce new mechanisms.
It simply reuses existing ones.
Support for modules is starting to land in editors and IDEs.
For example:
go.mod
has landed. Broader support tracked in #1906.The status of other tools such as goimports, guru, gorename and similar tools is being tracked in an umbrella issue #24661. Please see that umbrella issue for latest status.
Some tracking issues for particular tools includes:
nsf/gocode
is recommending people migrate off of nsf/gocode
to mdempsky/gocode
.In general, even if your editor, IDE or other tools have not yet been made module aware, much of their functionality should work with modules if you are using modules inside GOPATH and do go mod vendor
(because then the proper dependencies should be picked up via GOPATH).
The full fix is to move programs that load packages off of go/build
and onto golang.org/x/tools/go/packages
, which understands how to locate packages in a module-aware manner. This will likely eventually become go/packages
.
The community is starting to build tooling on top of modules. For example:
replace
and multi-module workflows, including allowing you to easily modify one of your dependenciesgohack example.com/some/dependency
automatically clones the appropriate repository and adds the necessary replace
directives to your go.mod
gohack undo
go.mod
files and related import statements in go source codevendor/
folder, such as shell scripts, .cpp files, .proto files, etc.replace
directives provide additional control in the top-level go.mod
for what is actually used to satisfy a dependency found in the Go source or go.mod files, while replace
directives in modules other than the main module are ignored when building the main module.replace
directive allows you to supply another import path that might be another module located in VCS (GitHub or elsewhere), or on your local filesystem with a relative or absolute file path. The new import path from the replace
directive is used without needing to update the import paths in the actual source code.go.mod
:replace example.com/original/import/path => /your/forked/import/path
replace
also allows the top-level module control over the exact version used for a dependency, such as:replace example.com/some/dependency => example.com/some/dependency v1.2.3
replace
also can be used to inform the go tooling of the relative or absolute on-disk location of modules in a multi-module project, such as:replace example.com/project/foo => ../foo
=>
in a replace directive, but typically it is less sensitive to change if you omit that (e.g., as done in all of the replace
examples above).require
directive is needed even when doing a replace
. For example, if foo
is a direct dependency, you cannot do replace foo => ../foo
without a corresponding require
for foo
. (If you are not sure what version to use in the require
directive, you can often use v0.0.0
such as require foo v0.0.0
; see #26241).go list -m all
, which shows you the actual final versions that will be used in your build including taking into account replace
statements.replace
to work entirely outside of VCS.Yes. VCS is not required.
This is very simple if you have a single module you want to edit at a time outside of VCS (and you either have only one module in total, or if the other modules reside in VCS). In this case, you can place the file tree containing the single go.mod
in a convenient location. Your go build
, go test
and similar commands will work even if your single module is outside of VCS (without requiring any use of replace
in your go.mod
).
If you want to have multiple inter-related modules on your local disk that you want to edit at the same time, then replace
directives are one approach. Here is a sample go.mod
that uses a replace
with a relative path to point the hello
module at the on-disk location of the goodbye
module (without relying on any VCS):
module example.com/me/hello require ( example.com/me/goodbye v0.0.0 ) replace example.com/me/goodbye => ../goodbye
As shown in this example, if outside of VCS you can use v0.0.0
as the version in the require
directive. Note that as mentioned in the prior FAQ, the require
directive is needed here. (replace example.com/me/goodbye => ../goodbye
does not yet work without a corresponding require example.com/me/goodbye v0.0.0
; this might change in the future with #26241).
A small runnable example is shown in this thread.
The initial series of vgo
blog posts did propose dropping vendoring entirely, but feedback from the community resulted in retaining support for vendoring.
In brief, to use vendoring with modules:
go mod vendor
resets the main module‘s vendor directory to include all packages needed to build and test all of the module’s packages based on the state of the go.mod files and Go source code.go build
ignore the vendor directory when in module mode.-mod=vendor
flag (e.g., go build -mod=vendor
) instructs the go commands to use the main module‘s top-level vendor directory to satisfy dependencies. The go commands in this mode therefore ignore the dependency descriptions in go.mod and assume that the vendor directory holds the correct copies of dependencies. Note that only the main module’s top-level vendor directory is used; vendor directories in other locations are still ignored.GOFLAGS=-mod=vendor
environment variable.Older versions of Go such as 1.10 understand how to consume a vendor directory created by go mod vendor
, so vendoring is one way to provide dependencies to older versions of Go that do not fully understand modules.
If you are considering using vendoring, it is worthwhile to read the “Modules and vendoring” and “Make vendored copy of dependencies” sections of the tip documentation.
Publicly hosted “always on” immutable module repositories and optional privately hosted proxies and repositories are becoming available.
For example:
Note that you are not required to run a proxy. Rather, the go tooling in 1.11 has added optional proxy support via GOPROXY to enable more enterprise use cases (such as greater control), and also to better handle situations such as “GitHub is down” or people deleting GitHub repositories.
By default, a command like go build
will reach out to the network as needed to satisfy imports.
Some teams will want to disallow the go tooling from touching the network at certain points, or will want greater control regarding when the go tooling updates go.mod
, how dependencies are obtained, and how vendoring is used.
The go tooling provides a fair amount of flexibility to adjust or disable these default behaviors, including via -mod=readonly
, -mod=vendor
, GOFLAGS
, GOPROXY=off
, GOPROXY=file:///filesystem/path
, go mod vendor
, and go mod download
.
The details on these options are spread throughout the official documentation. One community attempt at a consolidated overview of knobs related to these behaviors is here, which includes links to the official documentation for more information.
The simplest approach is likely just setting the environment variable GO111MODULE=on
, which should work with most CI systems.
However, it can be valuable to run tests in CI on Go 1.11 with modules enabled as well as disabled, given some of your users will not have yet opted in to modules themselves. Vendoring is also a topic to consider.
The following two blog posts cover these topics more concretely:
The modules system records precise dependency requirements in your go.mod
. (For more details, see the go.mod concepts section above or the go.mod tip documentation).
go mod tidy
updates your current go.mod
to include the dependencies needed for tests in your module — if a test fails, we must know which dependencies were used in order to reproduce the failure.
go mod tidy
also ensures your current go.mod
reflects the dependency requirements for all possible combinations of OS, architecture, and build tags (as described here). In contrast, other commands like go build
and go test
only update go.mod
to provide the packages imported by the requested packages under the current GOOS
, GOARCH
, and build tags (which is one reason go mod tidy
might add requirements that were not added by go build
or similar).
If a dependency of your module does not itself have a go.mod
(e.g., because the dependency has not yet opted in to modules itself), or if its go.mod
file is missing one or more of its dependencies (e.g., because the module author did not run go mod tidy
), then the missing transitive dependencies will be added to your module's requirements, along with an // indirect
comment to indicate that the dependency is not from a direct import within your module.
Note that this also means that any missing test dependencies from your direct or indirect dependencies will also be recorded in your go.mod
. (An example of when this is important: go test all
runs the tests of all direct and indirect dependencies of your module, which is one way to validate that your current combination of versions work together. If a test fails in one of your dependencies when you run go test all
, it is important to have a complete set of test dependency information recorded so that you have reproducible go test all
behavior).
Another reason you might have // indirect
dependencies in your go.mod
file is if you have upgraded (or downgraded) one of your indirect dependencies beyond what is required by your direct dependencies, such as if you ran go get -u
or go get foo@1.2.3
. The go tooling needs a place to record those new versions, and it does so in your go.mod
file (and it does not reach down into your dependencies to modify their go.mod
files).
In general, the behaviors described above are part of how modules provide 100% reproducible builds and tests by recording precise dependency information.
If you are curious as to why a particular module is showing up in your go.mod
, you can run go mod why -m <module>
to answer that question. Other useful tools for inspecting requirements and versions include go mod graph
and go list -m all
.
No, go.sum
is not a lock file. The go.mod
files in a build provide enough information for 100% reproducible builds.
For validation purposes, go.sum
contains the expected cryptographic checksums of the content of specific module versions. See the FAQ below for more details on go.sum
(including why you typically should check in go.sum
) as well as the “Module downloading and verification” section in the tip documentation.
In part because go.sum
is not a lock file, it retains cryptographic checksums for module versions even after you stop using a module or particular module version. This allows validation of the checksums if you later resume using something, which provides additional safety.
In addition, your module's go.sum
records checksums for all direct and indirect dependencies used in a build (and hence your go.sum
will frequently have more modules listed than your go.mod
).
Typically your module's go.sum
file should be committed along with your go.mod
file.
go.sum
contains the expected cryptographic checksums of the content of specific module versions.go.sum
.go mod verify
checks that the on-disk cached copies of module downloads still match the entries in go.sum
.go.sum
is not a lock file as used in some alternative dependency management systems. (go.mod
provides enough information for reproducible builds).go.sum
. See the “Module downloading and verification” section of the tip documentation for more details. See possible future extensions being discussed for example in #24117 and #25530.Yes. This supports working outside of GOPATH, helps communicate to the ecosystem that you are opting in to modules, and in addition the module
directive in your go.mod
serves as a definitive declaration of the identity of your code (which is one reason why import comments might eventually be deprecated). Of course, modules are purely an opt-in capability in Go 1.11.
Please see the discussion on the Semantic Import Versioning and the import compatibility rule in the “Semantic Import Versioning” concepts section above. See also the blog post announcing the proposal, which talks more about the motivation and justification for the import compatibility rule.
Please see the question “Why are major versions v0, v1 omitted from import paths?” in the earlier FAQ from the official proposal discussion.
In response to a comment about “k8s does minor releases but changes the Go API in each minor release”, Russ Cox made the following response that highlights some implications for picking v0, v1, vs. frequently making breaking changes with v2, v3, v4, etc. with your project:
I don't fully understand the k8s dev cycle etc, but I think generally the k8s team needs to decide/confirm what they intend to guarantee to users about stability and then apply version numbers accordingly to express that.
- To make a promise about API compatibility (which seems like the best user experience!) then start doing that and use 1.X.Y.
- To have the flexibility to make backwards-incompatible changes in every release but allow different parts of a large program to upgrade their code on different schedules, meaning different parts can use different major versions of the API in one program, then use X.Y.0, along with import paths like k8s.io/client/vX/foo.
- To make no promises about API compatible and also require every build to have only one copy of the k8s libraries no matter what, with the implied forcing of all parts of a build to use the same version even if not all of them are ready for it, then use 0.X.Y.
On a related note, Kubernetes has some atypical build approaches (currently including custom wrapper scripts on top of godep), and hence Kubernetes is an imperfect example for many other projects, but it will likely be an interesting example as Kubernetes moves towards adopting Go 1.11 modules.
Yes.
If a repository has not opted in to modules but has been tagged with valid semver tags (including the required leading v
), then those semver tags can be used in a go get
, and a corresponding semver version will be record in the importing module‘s go.mod
file. If the repository does not have any valid semver tags, then the repository’s version will be recorded with a “pseudo-version” such as v0.0.0-20171006230638-a6e239ea1c69
(which includes a timestamp and a commit hash, and which are designed to allow a total ordering across versions recored in go.mod
and to make it easier to reason about which recorded versions are “later” than another recorded version).
For example, if the latest version of package foo
is tagged v1.2.3
but foo
has not itself opted in to modules, then running go get foo
or go get foo@v1.2.3
from inside module M will be recorded in module M's go.mod
file as:
require foo v1.2.3
The go
tool will also use available semver tags for a non-module package in additional workflows (such as go list -u=patch
, which upgrades the dependencies of a module to available patch releases, or go list -u -m all
, which shows available upgrades, etc.).
Please see the next FAQs for additional details related to v2+ packages that have not opted in to modules.
Yes, a module can import a v2+ package that has not opted into modules, and if the imported v2+ package has a valid semver tag, it will be recorded with an +incompatible
suffix.
Additional Details
Please be familiar with the material in the “Semantic Import Versioning” section above.
It is helpful to first review some core principles that are generally useful but particularly important to keep in mind when thinking about the behavior described in this FAQ.
The following core principles are always true when the go
tool is operating in module mode (e.g., GO111MODULE=on
):
/vN
is treated as a v1 or v0 module (and this is true even if the imported package has not opted in to modules and has VCS tags that say the major version is greater than 1).module foo/v2
) declared at the start of a module's go.mod
file is both:As we will see in the next FAQ, these principles are not always true when the go
tool is not in module mode, but these principles are always true when the go
tool is in module mode.
In short, the +incompatible
suffix indicates that principle 2 above is in effect when the following are true:
/vN
is treated as a v1 or v0 module (even though the VCS tags say otherwise)When the go
tool is in module mode, it will assume a non-module v2+ package has no awareness of Semantic Import Versioning and treat it as an (incompatible) extension of the v1 version series of the package (and the +incompatible
suffix is an indication that the go
tool is doing so).
Example
Suppose:
oldpackage
is a package that predates the introduction of modulesoldpackage
has never opted in to modules (and hence does not have a go.mod
itself)oldpackage
has a valid semver tag v3.0.1
, which is its latest tagIn this case, running for example go get oldpackage@latest
from inside module M will record the following in module M's go.mod
file:
require oldpackage v3.0.1+incompatible
Note that there is no /v3
used at the end of oldpackage
in the go get
command above or in the recorded require
directive – using /vN
in module paths and import paths is a feature of Semantic Import Versioning, and oldpackage
has not signaled its acceptance and understanding of Semantic Import Versioning given oldpackage
has not opted into modules by having a go.mod
file within oldpackage
itself. In other words, even though oldpackage
has a semver tag of v3.0.1
, oldpackage
is not granted the rights and responsibilities of Semantic Import Versioning (such as using /vN
in import paths) because oldpackage
has not yet stated its desire to do so.
The +incompatible
suffix indicates that the v3.0.1
version of oldpackage
has not actively opted in to modules, and hence the v3.0.1
version of oldpackage
is assumed to not understand Semantic Import Versioning or how to use major versions in import paths. Therefore, when operating in module mode, the go
tool will treat the non-module v3.0.1
version of oldpackage
as an (incompatible) extension of the v1 version series of oldpackage
and assume that the v3.0.1
version of oldpackage
has no awareness of Semantic Import Versioning, and the +incompatible
suffix is an indication that the go
tool is doing so.
The fact that the the v3.0.1
version of oldpackage
is considered to be part of the v1 release series according to Semantic Import Versioning means for example that versions v1.0.0
, v2.0.0
, and v3.0.1
are all always imported using the same import path:
import "oldpackage"
Note again that there is no /v3
used at the end of oldpackage
.
In general, packages with different import paths are different packages. In this example, given versions v1.0.0
, v2.0.0
, and v3.0.1
of oldpackage
would all be imported using the same import path, they are therefore treated by a build as the same package (again because oldpackage
has not yet opted in to Semantic Import Versioning), with a single copy of oldpackage
ending up in any given build. (The version used will be the semantically highest of the versions listed in any require
directives; see “Version Selection”).
If we suppose that later a new v4.0.0
release of oldpackage
is created that adopts modules and hence contains a go.mod
file, that is the signal that oldpackage
now understands the rights and responsibilities of Semantic Import Versioning, and hence a module-based consumer would now import using /v4
in the import path:
import "oldpackage/v4"
and the version would be recorded as:
require oldpackage/v4 v4.0.0
oldpackage/v4
is now a different import path than oldpackage
, and hence a different package. Two copies (one for each import path) would end up in a module-aware build if some consumers in the build have import "oldpackage/v4"
while other consumers in the same build have import "oldpackage"
. This is desirable as part of the strategy to allow gradual adoption of modules. In addition, even after modules are out of their current transitional phase, this behavior is also desirable to allow gradual code evolution over time with different consumers upgrading at different rates to newer versions (e.g., allowing different consumers in a large build to choose to upgrade at different rates from oldpackage/v4
to some future oldpackage/v5
).
When considering older Go versions or Go code that has not yet opted in to modules, Semantic Import Versioning has significant backwards compatibility implications related to v2+ modules.
As described in the “Semantic Import Versioning” section above:
/vN
in its own module path declared in its go.mod
./vN
in the import path to import a v2+ module.However, the ecosystem is expected to proceed at varying paces of adoption for modules and Semantic Import Versioning.
As described in more detail in the “How to Release a v2+ Module” section, in the “Major Subdirectory” approach, the author of a v2+ module creates subdirectories such as mymodule/v2
or mymodule/v3
and moves or copies the approriate packages underneath those subdirectories. This means the traditional import path logic (even in older Go releases such as Go 1.8 or 1.7) will find the appropriate packages upon seeing an import statement such as import "mymodule/v2/mypkg"
. Hence, packages residing in a “Major Subdirectory” v2+ module will be found and used even if modules support is not enabled (whether that is because you are running Go 1.11 and have not enabled modules, or because you are running a older version like Go 1.7, 1.8, 1.9 or 1.10 that does not have full module support). Please see the “How to Release a v2+ Module” section for more details on the “Major Subdirectory” approach.
The remainder of this FAQ is focused on the “Major Branch” approach described in the “How to Release a v2+ Module” section. In the “Major Branch” approach, no /vN
subdirectories are created and instead the module version information is communicated by the go.mod
file and by applying semver tags to commits (which often will be on master
, but could be on different branches).
In order to help during the current transitional period, “minimal module compatibility” was introduced to Go 1.11 to provide greater compatibility for Go code that has not yet opted in to modules, and that “minimal module compatibility” was also backported to Go 1.9.7 and 1.10.3 (where those versions are effectively always operating with full module mode disabled given those older Go versions do not have full module support).
The primary goals of “minimal module compatibility” are:
Allow older Go versions 1.9.7+ and 1.10.3+ to be able to more easily compile modules that are using Semantic Import Versioning with /vN
in import paths, and provide that same behavior when module mode is disabled in Go 1.11.
Allow old code to be able to consume a v2+ module without requiring that old consumer code to immediately change to using a new /vN
import path when consuming a v2+ module.
Do so without relying on the module author to create /vN
subdirectories.
Additional Details – “Minimal Module Compatibility”
“Minimal module compatibility” only takes effect when full module mode is disabled for the go
tool, such as if you have set GO111MODULE=off
in Go 1.11, or are using Go versions 1.9.7+ or 1.10.3+.
When a v2+ module author has not created /v2
or /vN
subdirectories and you are instead relying on the “minimal module compatibility” mechanism in Go 1.9.7+, 1.10.3+ and 1.11:
go
tool is operating in full module mode. (A package that has opted in to modules is assumed to “speak” Semantic Import Versioning. If foo
is a module with v2+ versions, then under Semantic Import Versioning saying import "foo"
means import the v1 Semantic Import Versioning series of foo
)./vN
will be tried again after removing the /vN
if the import statement is inside code that has opted in to modules (that is, import statements in .go
files within a tree with a valid go.mod
file).import "foo/v2"
within code that lives inside of a module will still compile correctly in GOPATH mode in 1.9.7+, 1.10.3+ and 1.11, and it will resolve as if it said import "foo"
(without the /v2
), which means it will use the version of foo
that resides in your GOPATH without being confused by the extra /v2
.go
command line (such as arguments to go get
or go list
)./vN
import for v2+ modules.import "foo/v2"
appearing in module-based code resolves to the same code residing in your GOPATH as import "foo"
, and the build ends up with one copy of foo
– in particular, whatever version is on disk in GOPATH. This allows module-based code with import "foo/v2"
to compile even in GOPATH mode in 1.9.7+, 1.10.3+ and 1.11.go
tool is operating in full module mode:go
tool is in full module mode and foo
is a v2+ module, then import "foo"
is asking for a v1 version of foo
vs. import "foo/v2"
is asking for a v2 version of foo
.A multi-module repository is a repository that contains multiple modules, each with its own go.mod file. Each module starts at the directory containing its go.mod file, and contains all packages from that directory and its subdirectories recursively, excluding any subtree that contains another go.mod file.
Each module has its own version information. Version tags for modules below the root of the repository must include the relative directory as a prefix. For example, consider the following repository:
my-repo |____foo | |____rop | | |____go.mod
The tag for version 1.2.3 of module “my-repo/foo/rop” is “foo/rop/v1.2.3”.
Typically, the path for one module in the repository will be a prefix of the others. For example, consider this repository:
my-repo |____go.mod |____bar |____foo | |____rop | |____yut |____mig | |____go.mod | |____vub
Fig. A top-level module‘s path is a prefix of another module’s path.
This repository contains two modules. However, the module “my-repo” is a prefix of the path of the module “my-repo/mig”.
Adding modules, removing modules, and versioning modules in such a configuration require considerable care and deliberation, so it is almost always easier and simpler to manage a single-module repository rather than multiple modules in an existing repository.
Yes. However, there are two classes of this problem:
The first class: the package to which the module is being added to is not in version control yet (a new package). This case is straightforward: add the package and the go.mod in the same commit, tag the commit, and push.
The second class: the path at which the module is being added is in version control and contains one or more existing packages. This case requires a considerable amount of care. To illustrate, consider again the following repository (now in a github.com location to simulate the real-world better):
github.com/my-repo |____go.mod |____bar |____foo | |____rop | |____yut |____mig | |____vub
Consider adding module “github.com/my-repo/mig”. If one were to follow the same approach as above, the package /my-repo/mig could be provided by two different modules: the old version of “github.com/my-repo”, and the new, standalone module "github.com/my-repo/mig. If both modules are active, importing “github.com/my-repo/mig” would cause an “ambiguous import” error at compile time.
The way to get around this is to make the newly-added module depend on the module it was “carved out” from, at a version after which it was carved out.
Let's step through this with the above repository, assuming that “github.com/my-repo” is currently at v1.2.3:
Add github.com/my-repo/mig/go.mod:
cd path-to/github.com/my-repo/mig go mod init github.com/my-repo/mig # Note: if "my-repo/mig" does not actually depend on "my-repo", add a blank # import. # Note: version must be at or after the carve-out. go mod edit -require github.com/myrepo@v1.3
git commit
git tag v1.3.0
git tag mig/v1.0.0
Next, let‘s test these. We can’t go build
or go test
naively, since the go commands would try to fetch each dependent module from the module cache. So, we need to use replace rules to cause go
commands to use the local copies:
cd path-to/github.com/my-repo/mig go mod edit -replace github.com/my-repo@v1.3.0=../ go test ./... go mod edit -dropreplace github.com/my-repo@v1.3.0
git push origin master v1.2.4 mig/v1.0.0
push the commit and both tags
Note that in the future golang.org/issue/28835 should make the testing step a more straightforward experience.
Note also that code was removed from module “github.com/my-repo” between minor versions. It may seem strange to not consider this a major change, but in this instance the transitive dependencies continue to provide compatible implementations of the removed packages at their original import paths.
Yes, with the same two cases and similar steps as above.
Yes. Packages in one module are allowed to import internal packages from another module as long as they share the same path prefix up to the internal/ path component. For example, consider the following repository:
my-repo |____go.mod |____internal |____foo | |____go.mod
Here, package foo can import /my-repo/internal as long as module “my-repo/foo” depends on module “my-repo”. Similarly, in the following repository:
my-repo |____internal | |____go.mod |____foo | |____go.mod
Here, package foo can import my-repo/internal as long as module “my-repo/foo” depends on module “my-repo/internal”. The semantics are the same in both: since my-repo is a shared path prefix between my-repo/internal and my-repo/foo, package foo is allowed to import package internal.
Please see the question “Won't minimal version selection keep developers from getting important updates?” in the earlier FAQ from the official proposal discussion.
go env
to confirm it does not show an empty value for the read-only GOMOD
variable.GOMOD
as a variable because it is effectively read-only debug output that go env
outputs.GO111MODULE=on
to enable modules, double-check that it is not accidentally the plural GO111MODULES=on
. (People sometimes naturally include the S
because the feature is often called “modules”).-mod=vendor
flag is being passed to go build
or similar, or that GOFLAGS=-mod=vendor
is set.vendor
directory unless you ask the go
tool to use vendor
.go list -m all
to see the list of actual versions selected for your buildgo list -m all
usually gives you more detail compared to if you were to instead just look a go.mod
file.go get foo
fails in some way, or if go build
is failing on a particular package foo
, it often can be helpful to check the output from go get -v foo
or go get -v -x foo
:go get
will often provide more a detailed error message than go build
.-v
flag to go get
asks to print more verbose details, though be mindful that certain “errors” such as 404 errors might be expected based on how a remote repository was configured.go get -v -x foo
, which also shows the git or other VCS commands being issued. (If warranted, you can often execute the same git commands outside of the context of the go
tool for troubleshooting purposes).vgo
prototype and Go 1.11 beta, but much less frequently in the GA 1.11.go
commands executing in parallel (see #26794, which is addressed for Go 1.12). As a troubleshooting step, you can copy $GOPATH/pkg/mod to a backup directory (in case further investigation is warranted later), run go clean -modcache
, and then see whether the original problem persists.The error you are currently examining might be a secondary issue caused by not having the expected version of a particular module or package in your build. Therefore, if the cause of a particular error is not obvious, it can be helpful to spot check your versions as described in the next FAQ.
A good first step is to run go mod tidy
. There is some chance this might resolve the issue, but it will also help put your go.mod
file into a consistent state with respect to your .go
source code, which will help make any subsequent investigation easier.
The second step usually should be to check go list -m all
to see the list of actual versions selected for your build. go list -m all
shows you the final selected versions, including for indirect dependencies and after resolving versions for any shared dependencies. It also shows the outcome of any replace
and exclude
directives.
A good next step can be to examine the output of go mod graph
or go mod graph | grep <module-of-interest>
. go mod graph
prints the module requirement graph (including taking into account replacements). Each line in the output has two fields: the first column is a consuming module, and the second column is one of that module's requirements (including the version required by that consuming module). This can be a quick way to see which modules are requiring a particular dependency, including when your build has a dependency that has different required versions from different consumers in your build (and if that is the case, it is important to be familiar with the behavior described in the “Version Selection” section above).
go mod why -m <module>
can also be useful here, although it is typically more useful for seeing why a dependency is included at all (rather than why a dependency ends up with a particular version).
go list
provides many more variations of queries that can be useful to interrogate your modules if needed. One example is the following, which will show the exact versions used in your build excluding test-only dependencies:
go list -deps -f '{{with .Module}}{{.Path}} {{.Version}}{{end}}' ./... | sort -u
A more detailed set of commands and examples for interrogating your modules can be seen in a runnable “Go Modules by Example” walkthough.
One cause of unexpected versions can be due to someone having created an invalid or unexpected go.mod
file that was not intended, or a related mistake (for example: a v2.0.1
version of module might have incorrectly declared itself to be module foo
in its go.mod
without the required /v2
; an import statement in .go
code intended to import a v3 module might be be missing the required /v3
; a require
statement in a go.mod
for a v4 module might be be missing the required /v4
). Therefore, if the cause of a particular issue you are seeing is not obvious, it can be worthwhile to first re-read the material in the “go.mod” and “Semantic Import Versioning” sections above (given these include important rules that modules must follow) and then take a few minutes to spot check the most relevant go.mod
files and import statements.
This is a general error message that can occur for several different underlying causes.
In some cases, this error is simply due to a mistyped path, so the first step likely should be to double-check for incorrect paths based on the details listed in the error message.
If you have not already done so, a good next step is often to try go get -v foo
or go get -v -x foo
:
go get
will often provide more a detailed error message than go build
.Some other possible causes:
You might see the error cannot find module providing package foo
if you have issued go build
or go build .
but do not have any .go
source files in the current directory. If this is what you are encountering, the solution might be an alternative invocation such as go build ./...
(where the ./...
expands out to match all the packages within the current module). See #27122.
The module cache in Go 1.11 can cause this error, including in the face of network issues or multiple go
commands executing in parallel. This is resolved in Go 1.12. See the first troubleshooting FAQ in this section above for more details and possible corrective steps.
go mod init
without any arguments will attempt to guess the proper module path based on different hints such as VCS meta data. However, it is not expected that go mod init
will always be able to guess the proper module path.
If go mod init
gives you this error, those heuristics were not able to guess, and you must supply the module path yourself (such as go mod init github.com/you/hello
).
Yes. This requires some manual steps, but can be helpful in some more complex cases.
When you run go mod init
when initializing your own module, it will automatically convert from a prior dependency manager by translating configuration files like Gopkg.lock
, glide.lock
, or vendor.json
into a go.mod
file that contains corresponding require
directives. The information in a pre-existing Gopkg.lock
file for example usually describes version information for all of your direct and indirect dependencies.
However, if instead you are adding a new dependency that has not yet opted in to modules itself, there is not a similar automatic conversion process from any prior dependency manager that your new dependency might have been using. If that new dependency itself has non-module dependencies that have had breaking changes, then in some cases that can cause incompatibility problems. In other words, a prior dependency manager of your new dependency is not automatically used, and that can cause problems with your indirect dependencies in some cases.
One approach is to run go mod init
on your problematic non-module direct dependency to convert from its current dependency manager, and then use the require
directives from the resulting temporary go.mod
to populate or update the go.mod
in your module.
For example, if github.com/some/nonmodule
is a problematic direct dependency of your module that is currently using another dependency manager, you can do something similar to:
$ git clone -b v1.2.3 https://github.com/some/nonmodule /tmp/scratchpad/nonmodule $ cd /tmp/scratchpad/nonmodule $ go mod init $ cat go.mod
The resulting require
information from the temporary go.mod
can be manually moved into the actual go.mod
for your module, or you can consider using https://github.com/rogpeppe/gomodmerge, which is a community tool targeting this use case. In addition, you will want to add a require github.com/some/nonmodule v1.2.3
to your actual go.mod
to match the version that you manually cloned.
A concrete example of following this technique for docker is in this #28489 comment, which illustrates getting a consistent set of versions of docker dependencies to avoid case sensitive issues between github.com/sirupsen/logrus
vs. github.com/Sirupsen/logrus
.
In short:
Because the pre-built packages are non-module builds and can’t be reused. Sorry. Disable cgo for now or install gcc.
This is only an issue when opting in to modules (e.g., via GO111MODULE=on
). See #26988 for additional discussion.
import "./subdir"
?No. See #26645, which includes:
In modules, there finally is a name for the subdirectory. If the parent directory says “module m” then the subdirectory is imported as “m/subdir”, no longer “./subdir”.
Directories without .go
files are not copied inside the vendor
directory by go mod vendor
. This is by design.
In short, setting aside any particular vendoring behavior – the overall model for go builds is that the files needed to build a package should be in the directory with the .go
files.
Using the example of cgo – modifying C source code in other directories will not trigger a rebuild, and instead your build will use stale cache entries. The cgo documentation now includes:
Note that changes to files in other directories do not cause the package to be recompiled, so all non-Go source code for the package should be stored in the package directory, not in subdirectories.
A community tool https://github.com/goware/modvendor allows you to easily copy a complete set of .c, .h, .s, .proto or other files from a module into the vendor
director. Although this can be helpful, some care must be taken to make sure your go build is being handled properly in general (regardless of vendoring) if you have files needed to build a package that are outside of the directory with the .go
files.
See additional discussion in #26366.
An alternative approach to traditional vendoring is to check in the module cache. It can end up with similar benefits as traditional vendoring and in some ways ends up with a higher fidelity copy. This approach is explained as a “Go Modules by Example” walkthrough.