Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

golang/dep

Folders and files

NameName
Last commit message
Last commit date
Jul 11, 2018
Aug 7, 2019
Sep 5, 2020
Jun 13, 2019
Jun 13, 2019
Jun 13, 2019
Jul 3, 2018
Mar 4, 2019
Mar 4, 2019
Jan 23, 2019
Feb 21, 2017
Jan 27, 2018
Apr 10, 2019
Oct 7, 2016
Jun 13, 2019
Apr 25, 2017
Mar 4, 2019
Oct 7, 2016
Mar 4, 2019
Apr 10, 2019
Oct 7, 2016
Feb 7, 2018
May 8, 2019
Oct 7, 2016
Sep 5, 2020
Nov 11, 2017
May 2, 2017
Nov 17, 2017
May 2, 2017
Feb 19, 2018
Jul 18, 2018
Jul 18, 2018
Jun 7, 2017
Jan 31, 2019
Jul 3, 2018
Jul 3, 2018
Jul 24, 2018
Feb 11, 2018
Jul 12, 2018
Jul 3, 2018
Nov 11, 2017
Sep 6, 2018
Jul 21, 2018

Build Status Windows Build Status

Dep

dep is a dependency management tool for Go. It requires Go 1.9 or newer to compile.

NOTE: Dep was an official experiment to implement a package manager for Go. As of 2020, Dep is deprecated and archived in favor of Go modules, which have had official support since Go 1.11. For more details, see https://golang.org/ref/mod.

For guides and reference materials about dep, see the documentation.

Installation

You should use an officially released version. Release binaries are available on the releases page.

On MacOS you can install or upgrade to the latest released version with Homebrew:

$ brew install dep
$ brew upgrade dep

On Debian platforms you can install or upgrade to the latest version with apt-get:

$ sudo apt-get install go-dep

On Windows, you can download a tarball from go.equinox.io.

On other platforms you can use the install.sh script:

$ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh

It will install into your $GOPATH/bin directory by default or any other directory you specify using the INSTALL_DIRECTORY environment variable.

If your platform is not supported, you'll need to build it manually or let the team know and we'll consider adding your platform to the release builds.

If you're interested in getting the source code, or hacking on dep, you can install via go get:

go get -u github.com/golang/dep/cmd/dep