dep
Go言語の依存関係管理の公式実験です。コンパイルするにはGo 1.8以降が必要です。
を使用して依存関係の管理を開始dep
するには、プロジェクトのルートディレクトリから次のコマンドを実行します。
dep init
実行後、2つのファイルGopkg.toml
(「マニフェスト」)が生成されGopkg.lock
、必要なパッケージがvendor
ディレクトリにダウンロードされます。
github.com/gorilla/websocket
パッケージを使用するプロジェクトがあるとします。dep
次のファイルを生成します:
Gopkg.toml
# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
[[constraint]]
name = "github.com/gorilla/websocket"
version = "1.2.0"
Gopkg.lock
# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
[[projects]]
name = "github.com/gorilla/websocket"
packages = ["."]
revision = "ea4d1f681babbce9545c9c5f3d5194a789c89f5b"
version = "v1.2.0"
[solve-meta]
analyzer-name = "dep"
analyzer-version = 1
inputs-digest = "941e8dbe52e16e8a7dff4068b7ba53ae69a5748b29fbf2bcb5df3a063ac52261"
solver-name = "gps-cdcl"
solver-version = 1
あなたの更新/削除/などのパッケージに、詳細見つけてくださいヘルプコマンドがあり、公式のGitHubリポジトリのdep
(ゴーの依存関係管理ツールが)。
go get
この動作が必要な場合は、適切なツールではありません。特定の問題の解決策を探し回ることができます。