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
root@384463eac0ad:/go# go get -u github.com/cybozu-go/usocksd/...
go: go.mod file not found in current directory or any parent directory.
'go get' is no longer supported outside a module.
To build and install a command, use 'go install' with a version,
like 'go install example.com/cmd@latest'
For more information, see https://golang.org/doc/go-get-install-deprecation
or run 'go help get' or 'go help install'.
This worked for me but I don't code in go professionally, don't really know if this is a proper replacement for the deprecated go get command
root@384463eac0ad:/go# go install github.com/cybozu-go/usocksd/cmd/usocksd@latest
go: downloading github.com/cybozu-go/usocksd v1.3.0
...snip...
root@384463eac0ad:/go# ls -l bin
total 14132
-rwxr-xr-x 1 root root 14466858 May 22 02:30 usocksd
The text was updated successfully, but these errors were encountered:
docker run -ti golang:bullseye bash
Followed
usocksd
's readme but got this error:This worked for me but I don't code in go professionally, don't really know if this is a proper replacement for the deprecated
go get
commandThe text was updated successfully, but these errors were encountered: