Go は初めてで、ローカルで Go プロジェクトに取り組んでいます。次の方法でローカル システムに Godep をインストールしました。
go get github.com/tools/godep
そして、Aerospikeの依存関係をインストールしました
go get -u github.com/aerospike/aerospike-client-go
ただし$GOPATH/bin/godep save ./...
、次のエラーが表示されます:-
godep: [WARNING]: godep should only be used inside a valid go package directory and
godep: [WARNING]: may not function correctly. You are probably outside of your $GOPATH.
godep: [WARNING]: Current Directory: /Users/XYZ/go_code/labs-audience
godep: [WARNING]: $GOPATH: /Users/XYZ/go_code
godep: WARNING: Godep workspaces (./Godeps/_workspace) are deprecated and support for them will be removed when go1.8 is released.
godep: WARNING: Go version (go1.6) & $GO15VENDOREXPERIMENT= wants to enable the vendor experiment, but disabling because a Godep workspace (Godeps/_workspace) exists
godep: WARNING: Recorded major go version (go1.5) and in-use major go version (go1.6) differ.
godep: To record current major go version run `godep update -goversion`.
Godeps/Godeps.json
my andGodeps/_workspace/
ディレクトリを切り捨てます。プロジェクト Go のバージョンを 1.6 にアップグレードするためにパニングしているわけではないことに注意してください。私は何を間違っていますか?
ノート:
- $PROJECT_PATH: $GOPATH/プロジェクト/
- すべてのコマンドは $PROJECT_PATH で実行されています