0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

brew installのエラー:curl: (22) The requested URL returned error: 403 Forbidden

Posted at

背景・問題

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
スクリーンショット 2021-07-21 13.56.01.png

なので、
download失敗したよ!

解決策

gitを更新しましょう!$ brew install git 終わったら、再び $ brew install helmを実行すれば、無事にinstallできた!

$ brew install git    
$ brew install helm
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?