-
Notifications
You must be signed in to change notification settings - Fork 48
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
does it support windows? #25
Comments
Hi, I solved this problem putting windows in developer mode. |
try open cmd window by administrator,it seems like can install go,but not support switch version on Windows |
I fix it with SysinternalsSuite junction.exe err := os.Symlink(version, current)
if err != nil {
if runtime.GOOS == "windows" {
var junction = os.Getenv("GOUP_JUNCTION")
if junction == "" {
junction = "d:\\tools\\SysinternalsSuite\\junction.exe"
}
cmd := exec.Command(junction, current, version)
err := cmd.Run()
if err == nil {
return nil
}
fmt.Println(err)
}
}
return err |
fix it with mklink.exe also. |
It's a shame windows isn't supported |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I install go version on windows, it report a error:
when i execute
goup
command, got:does anyone knows how to solve this problem?
The text was updated successfully, but these errors were encountered: