Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Golang/dep
Go dependency management tool experiment (deprecated)
https://github.com/Golang/dep
dependency-manager golang package-manager toolchain
Last synced: 12 days ago
JSON representation
Go dependency management tool experiment (deprecated)
- Host: GitHub
- URL: https://github.com/Golang/dep
- Owner: golang
- License: bsd-3-clause
- Archived: true
- Created: 2016-10-07T00:04:51.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-09-05T13:47:25.000Z (about 4 years ago)
- Last Synced: 2024-10-13T17:21:36.307Z (23 days ago)
- Topics: dependency-manager, golang, package-manager, toolchain
- Language: Go
- Homepage: https://golang.github.io/dep/
- Size: 11.9 MB
- Stars: 12,848
- Watchers: 256
- Forks: 1,047
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
## 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](https://golang.github.io/dep).
## Installation
You should use an officially released version. Release binaries are available on
the [releases](https://github.com/golang/dep/releases) page.On MacOS you can install or upgrade to the latest released version with Homebrew:
```sh
$ brew install dep
$ brew upgrade dep
```On Debian platforms you can install or upgrade to the latest version with apt-get:
```sh
$ sudo apt-get install go-dep
```On Windows, you can download a tarball from
[go.equinox.io](https://go.equinox.io/github.com/golang/dep/cmd/dep).On other platforms you can use the `install.sh` script:
```sh
$ 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`:```sh
go get -u github.com/golang/dep/cmd/dep
```