Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Composer | 27,645 | 7,501 | 2,066 | 6 hours ago | 168 | September 14, 2022 | 154 | mit | PHP | |
Dependency Manager for PHP | ||||||||||
Poetry | 25,297 | 32 | 123 | a day ago | 153 | August 31, 2022 | 605 | mit | Python | |
Python packaging and dependency management made easy | ||||||||||
Pnpm | 24,012 | 172 | 442 | 8 hours ago | 897 | September 22, 2022 | 1,183 | mit | TypeScript | |
Fast, disk space efficient package manager | ||||||||||
Cocoapods | 14,137 | 6,339 | 233 | 13 hours ago | 216 | September 13, 2021 | 504 | other | Ruby | |
The Cocoa Dependency Manager. | ||||||||||
Dep | 12,995 | 173 | 31 | 3 years ago | 13 | June 13, 2019 | bsd-3-clause | Go | ||
Go dependency management tool experiment (deprecated) | ||||||||||
Patch Package | 8,707 | 367 | 933 | 5 days ago | 84 | March 12, 2021 | 182 | mit | TypeScript | |
Fix broken node modules instantly 🏃🏽♀️💨 | ||||||||||
Athens | 4,115 | 1 | a month ago | 44 | April 01, 2022 | 142 | mit | Go | ||
A Go module datastore and proxy | ||||||||||
Mint | 2,084 | 16 days ago | April 03, 2018 | 53 | mit | Swift | ||||
A package manager that installs and runs executable Swift packages | ||||||||||
Cpm.cmake | 1,923 | 14 days ago | 66 | mit | CMake | |||||
📦 CMake's missing package manager. A small CMake script for setup-free, cross-platform, reproducible dependency management. | ||||||||||
Paket | 1,913 | 25 | 5 | 3 months ago | 2,505 | June 22, 2022 | 754 | mit | F# | |
A dependency manager for .NET with support for NuGet packages and Git repositories. |
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.
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