Heroku CLIをインストール
- Herokuをコマンドで操作できるようにするツール
$ brew tap heroku/brew && brew install heroku
エラーが発生
terminal
You have 30 outdated formulae and 1 outdated cask installed.
You can upgrade them with brew upgrade
or list them with brew outdated.
下記コマンド実行
$ brew upgrade
-
brew update
・・・Homebrewだけをアップデートするためのコマンド(Homebrewにインストールされているパッケージは更新されない) -
brew upgrade
・・・Homebrewのアップデート&Homebrewにインストールされているパッケージに更新が必要なものがあれば、同時にパッケージの更新も実行- 後者は時間がかかる
ただ、まだエラーが出る
terminal
==> Installing heroku from heroku/brew
Error: Your Command Line Tools are too outdated.
Update them from Software Update in System Preferences or run:
softwareupdate --all --install --force
If that doesn't show you any updates, run:
sudo rm -rf /Library/Developer/CommandLineTools
sudo xcode-select --install
Alternatively, manually download them from:
https://developer.apple.com/download/all/.
You should download the Command Line Tools for Xcode 13.4.
下記実行
$ softwareupdate --all --install --force
- montereyのupdateが始まり、30分くらい時間を要した
- おかげで最新になったw
-
monterey
とは・・・macOS 12 ”Montery”は、WWDC 2021で正式発表されたMac向けのOS
terminal
(base) sample@SampleMBP ~ % softwareupdate --all --install --force
Software Update Tool
Finding available software
Downloading macOS Monterey 12.5.1
これでも上手くいかなかったため下記実行
$ sudo rm -rf /Library/Developer/CommandLineTools
$ sudo xcode-select --install
- 最初は残り147時間とかいう絶望的な時間を提示されるが、1時間くらいで終わる
HerokuCLIインストール
$ brew tap heroku/brew && brew install heroku
完了