-
Notifications
You must be signed in to change notification settings - Fork 17.7k
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
import/path: issue title #70159
Comments
How come the Go 1.23.2 tarball produces a By the way, GOSUMDB is also a blank string out of the box, which |
Unlike many projects, the Go project does not use GitHub Issues for general discussion or asking questions. GitHub Issues are used for tracking bugs and proposals only. For questions please refer to https://github.com/golang/go/wiki/Questions |
That's why I'm here; to analyze errors and potential bugs, not perform general discussions. |
You will get better and faster answers in a forum. |
The root problem in this case seems to be untarring the Go archive directly into GOROOT, resulting in a corrupted directory structure .../go/go/... Thereupon Go gets confused and ends up with a kinds of misbehaviors. Changing the |
If that's the case then disable GitHub issues for this repository. No sense maintaining a forum that users are actively discouraged from using to troubleshoot errors. |
We use the issue tracker to track bug reports and proposed changes to the language and library. We have tried to use it to help people with using Go, but we have found through experience that using a forum works better for the people who are having problems. That is why we wrote https://go.dev/wiki/Questions, and why we direct people there. There are many millions of Go users, and there is a very small team of Go developers. The most effective way for users to get help is from other users. That is what forums are for. Thanks for your interest in Go. |
Go version
https://go.dev/dl/go1.23.2.linux-amd64.tar.gz
Output of
go env
in your module/workspace:What did you do?
export GOPATH="$WORKSPACE_TMP/go"
export GOPROXY='https://proxy.golang.org,direct'
export GOROOT="$WORKSPACE_TMP/usr/local/go"
export PATH="$PATH:$WORKSPACE_TMP/bin:$GOPATH/bin"
mkdir -p "$WORKSPACE_TMP/bin"
mkdir -p "$GOROOT"
mkdir -p "$GOPATH"
curl -LO https://go.dev/dl/go1.23.2.linux-amd64.tar.gz
tar -C "$GOROOT" -xzf go1.23.2.linux-amd64.tar.gz
go install github.com/kisielk/[email protected]
What did you see happen?
Error
go: github.com/kisielk/[email protected]: GOPROXY list is not the empty string, but contains no entries
What did you expect to see?
No Error
The text was updated successfully, but these errors were encountered: