-
Will yaegi support go module? It is so troublesome when using 3rd party lib in scripts |
Beta Was this translation helpful? Give feedback.
Answered by
mvertes
Feb 16, 2023
Replies: 1 comment
-
Yes, this is long overdue. It has been slowed by the fact that most of the module machinery is outside of the Go standard library, and we do not want to add any external dependencies. I think that it should still be possible to come up with an internal very simple resolver just to get the source package location under |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ldez
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, this is long overdue. It has been slowed by the fact that most of the module machinery is outside of the Go standard library, and we do not want to add any external dependencies. I think that it should still be possible to come up with an internal very simple resolver just to get the source package location under
GOMODCACHE
(i.e~/go/pkg/mod/...
), and skip everything else.