Featured image of post Golang

Golang

Golang

TODO

Inbox

  1. go install 网络问题解决方案
    1. ($env:http_proxy="http://127.0.0.1:7890") -and (go install github.com/xxx/yyy@version)
    2. ($env:GOPROXY="https://goproxy.cn") -and (go install github.com/xxx/yyy@version)
    3. go env -w GOPROXY=https://goproxy.cn,direct

Reference

Licensed under CC BY-NC-SA 4.0