-
-
Notifications
You must be signed in to change notification settings - Fork 566
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
v3: Installation issues #2106
Comments
I found a working solution over at https://github.com/go-modules-by-example/index/blob/master/010_tools/README.md#tools-as-dependencies I'm not sure if this is the only way to install binaries globally with modules in Go, but at least it works for now. It might be worth linking to this example in the readme unless there's a better way? |
I dug a little deeper and seems like there are currently issues using see: golang/go#27215 Would it perhaps be better to change the line in the readme to fetch the command directly? - go get -u goa.design/goa/v3/...
+ go get -u goa.design/goa/v3/cmd/goa |
Thank you for the pointer to the "Go modules by example" repo! I think what's happening here is that the |
I can definitely open up a PR @raphael - I should have a gap later this evening 🙌 |
Hi 👋 I'm trying to follow the installation instructions in the readme and have been running into some issues. First, my setup:
export GO111MODULE=on
There is no
goa
available in my$PATH
and$PATH
does include$HOME/go/bin
I try the
go get
commands:The first
go get
command seems to be successful, but the second is not and there is nogoa
binary available:Not sure what to do now. I realise this might be an issue with Go and not Goa, but whatever the workaround is we should at least update the readme :)
The text was updated successfully, but these errors were encountered: