You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi. The dep command generated an error when following the README.
$ dep ensure -add github.com/aws/aws-xray-sdk-go
Fetching sources...
Solving failure: No versions of github.com/aws/aws-xray-sdk-go met constraints:
v0.9.4: Could not introduce github.com/aws/[email protected], as its subpackage github.com/aws/aws-xray-sdk-go does not contain usable Go code (*build.NoGoError)..
This seems to happen because there is no .go under the root package.
The package containing .go was successful.
$ dep ensure-add github.com/aws/aws-xray-sdk-go/xray
aws-xray-sdk will probably work with this command.
The text was updated successfully, but these errors were encountered:
@k-kurikuri , thank you for contacting us regarding your issue. It seems like this is an issue with dep and currently there is no fix for it. Here are two solutions to fix this. First one like you mentioned above, install the individual packages using dep ensure -add. Second one is inside your Gopkg.toml file and then write down the dependency you want to install like below
[[constraint]]
name = "github.com/aws/aws-xray-sdk-go"
version = "v1.0.0-rc.11"
After finishing this, run dep ensure to install the dependency.
Hi. The dep command generated an error when following the README.
This seems to happen because there is no
.go
under the root package.The package containing
.go
was successful.aws-xray-sdk will probably work with this command.
The text was updated successfully, but these errors were encountered: