-
Notifications
You must be signed in to change notification settings - Fork 159
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
invalid go version '1.21.3': must match format 1.23 #59
Comments
Hey @edongkido , Just wanted to share that you can install it with the following commands; it worked for me: git clone https://github.com/PentestPad/subzy.git
cd subzy
go build
go install After that, you can find the subzy executable in either $GOPATH/bin or /home/user/go/bin. Let me know if you need any further information. |
Hey @touhidshaikh, tried what you have suggested but still encountered the same error. Thank you! |
I edited go.mod and changed go 1.21.3 to go 1.23 and it worked. Thanks! |
@edongkido, I am encountering the same issue. |
working now thanks, @edongkido and @touhidshaikh |
I noticed an update addressing the fingerprint error, so I ran the following command to get the latest version:
go install -v github.com/PentestPad/subzy@latest
However, I encountered this error:
go: github.com/PentestPad/subzy@latest (in github.com/PentestPad/[email protected]): go.mod:3: invalid go version '1.21.3': must match format 1.23
It seems I'm running Go version 1.23, but subzy only requires 1.21.3 as specified in its go.mod file:
module github.com/PentestPad/subzy
go 1.21.3
require (
What workarounds can I try?
The text was updated successfully, but these errors were encountered: