-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Packages in vendor/ are not found #14
Comments
I just added Let me know if you run into any other issues! |
Thanks, this looks way better now, but didn't fully fix the problem. Now the error is:
looks like the leading slash is missing here: |
I have similar issue now. I provision my dependencies using glide and go-pry cant load dependencies from vendor folder it seems. go run and go test both work fine in this project. Should I provide extra information about my environment? Thanks! |
It'd definitely be helpful to have more information. Trying to track down this issue |
Looks like this is related to golang/go#11415 .Might be able to fix this by switching to https://github.com/metakeule/importer. For now the workaround is running |
Do I understand it correctly that we'd have to run |
Yeah. It's pretty obnoxious right now. That's due to go packages being
resolved via "install" instead of source by default. Should be able to do
something similar to
golang/go@ddbee9a
though
…On Tue, Aug 15, 2017, 07:40 Ali Khajeh-Hosseini ***@***.***> wrote:
Do I understand it correctly that we'd have to run go install ... for
each package in glide.yaml - and also their dependencies to make go-pry
work with glide?
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#14 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AA3fMJf5vH2CiHc50rlyu6giT0EvW236ks5sYa3RgaJpZM4LRFVN>
.
|
this should be fixed |
Hey, I tried to use
go-pry
in a project where external packages are belowvendor/
. Go pry keeps saying packages not found:it's actually in /src//vendor/github.com/google/go-github/github
Could you give me some pointers how to fix this pls?
The text was updated successfully, but these errors were encountered: