Golang にて already imported or required, so -add is only valid with a constraint の対応

$ dep ensure -add github.com/sapmle/project

を実行したら下記エラーが出た。

Fetching sources...

Failed to add the dependencies:

  ✗ github.com/sapmle/project is already imported or required, so -add is only valid with a constraint

adding dependencies failed

エラー文読むに -add というのは、
インストールしたいパッケージを既にどこかのファイルに import 文として記述している場合、
使えないみたいな感じだと思う。

下記コマンドで解決。

$ dep ensure