🤖

M1 Mac で Cloud Foundry の cf コマンド(6系)をHomebrew で macOS にインストールする

2023/02/26に公開

M1 Mac で Cloud Foundry の cf コマンド をversion6系を指定してインストール必要があり、その時にハマったので解決法を記載しておく

M1 Mac でなければ以下のコマンドでインストールできる

# install
$ brew install cloudfoundry/tap/cf-cli@6

# upgrade
$ brew upgrade cf-cli@6

しかし M1 Mac の場合エラーが出て失敗してしまう

cf-cli@6: The x86_64 architecture is required for this software.
Error: cf-cli@6: An unsatisfied requirement failed this build

↓のcurlを使用した方法でM1 Macでもインストールできる!

# install
$ curl -L "https://packages.cloudfoundry.org/stable?release=macosx64-binary&source=github&version=v6" | tar -zx cf
$ sudo mv ./cf /usr/local/bin/cf

Discussion