1. ホーム
  2. go

golang インストールプロンプト:ダイヤル tcp 216.58.200.241:443: connectex: 接続の試行に失敗しました。

2022-02-23 20:37:13
<パス

goを始める準備として、ginをインストールするためにgo get -u github.com/gin-gonic/gin コマンドを実行しましたが、以下のエラーに遭遇しました。


go get: module github.com/gin-gonic/gin: Get 
"https://proxy.golang.org/github.com/gin-gonic/gin/@v/list":
 dial tcp 216.58.200.241:443: connectex: A connection attempt failed 
 because the connected party did not properly respond after a period of
  time, or established connection failed because connected host has failed to respond.
   failed to respond.


最後に、proxy.golang.orgは中国のファイアウォールによってブロックされており、アクセスできないことがわかりましたので、proxyを追加する必要があります。

go env -w GOPROXY=https://goproxy.cn


実行後、完了!