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
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/exp@v0.0.0-20250106191152-7588d65b2ba8/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/v2@v2.2.3/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.
The text was updated successfully, but these errors were encountered:
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.
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/exp@v0.0.0-20250106191152-7588d65b2ba8/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/v2@v2.2.3/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.
The text was updated successfully, but these errors were encountered: