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
I'm admittedly brand new in go. I'm familiar with Go modules, and with none of the older outdated setup methods. I've installed Go 1.15 based on the most up to date install instructions (https://golang.org/doc/install - I am using a system-wide install in /usr/local/)
I can't figure out if I am meant to be in a project or just anywhere when I run
go get github.com/kujtimiihoxha/kit
The command runs fine when I am in a project, but it installs it in the project (expected) and the next command go install kit fails as it is looking in /usr/local for the file:
❯ go install kit
package kit is not in GOROOT (/usr/local/go/src/kit)
Trying to run go get github.com/kujtimiihoxha/kit in any shell outside a project just fails silently.
I imagine I could clone the whole repo into /usr/local/go/src/kit - but is that the proper method? Is that going to mess things up? I don't know - as no context is given in the instructions.
Can you please update the directions to provide the missing context here? This application is aim at people new to Go-Kit, and presumably go, so as such I feel they are somewhat lacking.
The text was updated successfully, but these errors were encountered:
Hi,
I'm admittedly brand new in go. I'm familiar with Go modules, and with none of the older outdated setup methods. I've installed Go 1.15 based on the most up to date install instructions (https://golang.org/doc/install - I am using a system-wide install in /usr/local/)
I can't figure out if I am meant to be in a project or just anywhere when I run
The command runs fine when I am in a project, but it installs it in the project (expected) and the next command
go install kit
fails as it is looking in /usr/local for the file:Trying to run
go get github.com/kujtimiihoxha/kit
in any shell outside a project just fails silently.I imagine I could clone the whole repo into
/usr/local/go/src/kit
- but is that the proper method? Is that going to mess things up? I don't know - as no context is given in the instructions.Can you please update the directions to provide the missing context here? This application is aim at people new to Go-Kit, and presumably go, so as such I feel they are somewhat lacking.
The text was updated successfully, but these errors were encountered: