最近、macOSのパッケージマネージャーであるHomebrewをアップデートしました。
この記事では、Homebrewのアップデート手順を紹介します!
Homebrewをアップデートする手順
1. brew -vでアップデート前のバージョンをチェック
% brew -v Homebrew 3.1.8 Homebrew/homebrew-core (git revision 82c63e45d5; last commit 2021-05-20) Homebrew/homebrew-cask (git revision f397055044; last commit 2021-05-20)
アップデート前のバージョンをチェックします。
私の環境では、アップデート前のバージョンは3.1.8です。
2. brew updateで最新のformulaeを取得
% brew update Updated 2 taps (homebrew/core and homebrew/cask). ==> New Formulae argocd-autopilot avahi code-minimap libmobi moar osinfo-db-tools px rpg-cli sqlx-cli --長いので省略-- You have 4 outdated formulae installed. You can upgrade them with brew upgrade or list them with brew outdated.
GitHubから最新バージョンのHomebrewとformulaeが取得され、必要な移行を実行します。
3. brew upgradeでインストールされているformulaeを全てアップグレード
% brew upgrade ==> Upgrading 4 outdated packages: openjdk 15.0.2 -> 16.0.1 nodebrew 1.0.1 -> 1.1.0 pcre2 10.36 -> 10.37 git 2.30.0 -> 2.32.0 ==> Upgrading openjdk 15.0.2 -> 16.0.1 ==> Downloading https://ghcr.io/v2/homebrew/core/openjdk/manifests/16.0.1 ######################################################################## 100.0% --長いので省略--
インストール済みのformulaeをアップグレードします。
プログレスバーでタスクの進行状況が確認できます。
4. brew cleanupで古いformulaeを削除
% brew cleanup
必要なくなった古いformulaeは削除しましょう。
5. brew -vでアップデート後のバージョンをチェック
% brew -v Homebrew 3.1.12 Homebrew/homebrew-core (git revision 893d137bfb; last commit 2021-06-19) Homebrew/homebrew-cask (git revision aa2adf9275; last commit 2021-06-19)
バージョンが更新されていれば、アップデート完了です。
お疲れ様でした!
コメント