build & run issues
Hi, I tried your repo and no matter how I followed instructions, I have no lack running your program. Can you provide a much clearer instruction on how to run your app? Tried it in both windows and ubuntu with no luck.
For instance:
./task/build-linux-x64.sh
fatal: No names found, cannot describe anything. ../../go/pkg/mod/golang.org/x/[email protected]/slices/slices.go:9:2: package cmp is not in GOROOT (/usr/lib/go-1.18/src/cmp) util/bitset.go:4:2: package iter is not in GOROOT (/usr/lib/go-1.18/src/iter) game/keno/keno.go:7:2: package math/rand/v2 is not in GOROOT (/usr/lib/go-1.18/src/math/rand/v2) ../../go/pkg/mod/github.com/pelletier/go-toml/[email protected]/marshaler.go:11:2: package slices is not in GOROOT (/usr/lib/go-1.18/src/slices)
On windows, it just say: "fatal: No names found, cannot describe anything."
What am I doing wront?
Hope you can help solve it.
Please checkup your golang version by go version
Those sources expects not less than 1.23, package iter was introduced in 1.23 version. If version is less, remove it at all, then install new 1.23, and run go mod download inside of root directory of project.
Also it can be the case, that golang.org is blocked for this location, so you can resolve this situation by VPN.