背景・問題
Macで helmを導入したい!
$ brew install helm
上記を実行すると、
下記のエラーが出ました!
curl: (22) The requested URL returned error: 403 Forbidden
==> Downloading https://homebrew.bintray.com/bottles/helm-3.5.3.big_sur.bottle.tar.gz
Warning: Transient problem: HTTP error Will retry in 1 seconds. 3 retries
Warning: left.
-=O=- # # # #
curl: (22) The requested URL returned error: 403 Forbidden
Error: Failed to download resource "helm"
Download failed: https://homebrew.bintray.com/bottles/helm-3.5.3.big_sur.bottle.tar.gz`
原因
gitは最新ではないため、
失敗のdownload先のバージョンは3.5.3ですが、
helmで調べみると、
最新のバージョンはなんと3.6.3です!( 2021/7/21 時点 )
https://github.com/helm/helm/releases
なので、
download失敗したよ!
解決策
gitを更新しましょう!$ brew install git
終わったら、再び $ brew install helm
を実行すれば、無事にinstallできた!
$ brew install git
$ brew install helm