1
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.

Homebrew 2.6.0 以上で brew cask install が失敗する

Last updated at Posted at 2021-01-09

対処方法

  • Homebrew 2.6.0 以降は brew cask installbrew install --cask で読み替える
  • 失敗する理由は Homebrew 2.6.0 から brew cask コマンドが非推奨になったため ( M1 Mac と Intel Mac の両方をサポートするための取り組みみたい [2] )
// これを🍺
$ brew cask install FORMULA_NAME

// こう🍺
$ brew install --cask FORMULA_NAME

追記

筆者が遭遇したやつ

GIMP のインストールに失敗した

  • GIMP のダウンロードページの説明通り[1]brew cask install しようとしたら失敗する

There are indications that there is now a formula for GIMP, installable with: brew tap homebrew/cask && brew cask install gimp.

$ brew tap homebrew/cask && brew cask install gimp
Updating Homebrew...
==> Auto-updated Homebrew!
Updated 1 tap (homebrew/cask).
==> Updated Casks
Updated 4 casks.

Updating Homebrew...
Error: Calling brew cask install is disabled! Use brew install [--cask] instead.

対策

  • エラー文に書いてある通り、 --cask オプションをつけて実行する
    • なお、私はすでに GIMP をインストールしていたことを忘れて実行したので、もうインストールしてるよ!!って言われてます。
$ brew tap homebrew/cask && brew install --cask gimp
Updating Homebrew...
Updating Homebrew...
Warning: Cask 'gimp' is already installed.

To re-install gimp, run:
  brew reinstall gimp

その後

  • インストール方法に書いてある情報古くなってるよ!ってどうやって GIMP に報告したらいいんだろう、と思いつつ gimp-web のリポジトリに issue 立てて みました。英語難しいですね。。

参考

  1. https://www.gimp.org/downloads/
  2. https://brew.sh/2020/12/01/homebrew-2.6.0
1
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
1
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?