🍎

M2 MacにHomebrewをインストールする

2023/11/09に公開

M2 MacにHomebrewを導入したときのメモです。

Macについて

Homebrewを導入したMacは以下のとおりです。

MacBook Air 15インチ, M2, 2023
メモリ: 24GB
MacOS: Sonoma 14.1

Homebrewのインストール

macOSのパッケージマネージャーであるHomebrewをインストールします。

  • Macのターミナルを開く
  • WebブラウザーでHomebrewの公式サイト(https://brew.sh/ja/)へ行き、インストール用のコマンドをコピーする
  • Macのターミナルに貼り付けて実行。passwordの入力を求めてくるので、Macのログインパスワードを入力する。
 % /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"     
==> Checking for `sudo` access (which may request your password)...
Password:
  • 以下のメッセージを確認し、returnキーを押す
Press RETURN/ENTER to continue or any other key to abort:
  • 以下のように"==> Installation successful!"が出たらインストール完了
HEAD is now at fd6d412b0 Merge pull request #16197 from bevanjkay/url-type-fix
Warning: /opt/homebrew/bin is not in your PATH.
  Instructions on how to configure your shell for Homebrew
  can be found in the 'Next steps' section below.
==> Installation successful!

==> Homebrew has enabled anonymous aggregate formulae and cask analytics.
Read the analytics documentation (and how to opt-out) here:
  https://docs.brew.sh/Analytics
No analytics data has been sent yet (nor will any be during this install run).

==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
  https://github.com/Homebrew/brew#donations

==> Next steps:
- Run these two commands in your terminal to add Homebrew to your PATH:
    (echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/<<Macのユーザー名>>/.zprofile
    eval "$(/opt/homebrew/bin/brew shellenv)"
- Run brew help to get started
- Further documentation:
    https://docs.brew.sh
  • 上記のメッセージにある"Next steps"の指示にしたがう。Next stepsにある2行のコマンドを1行ずつコピーしターミナルに貼り付けて実行する。以下を実行しないと、パスが通っていないのでbrewコマンドが実行できない
% (echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/<<Macのユーザー名>>/.zprofile
% eval "$(/opt/homebrew/bin/brew shellenv)"
  • ターミナルでbrew helpと入力し、以下のようにbrewの使い方が表示されればインストール完了
% brew help
Example usage:
  brew search TEXT|/REGEX/
  brew info [FORMULA|CASK...]
  brew install FORMULA|CASK...
  brew update
  brew upgrade [FORMULA|CASK...]
  brew uninstall FORMULA|CASK...
  brew list [FORMULA|CASK...]

Troubleshooting:
  brew config
  brew doctor
  brew install --verbose --debug FORMULA|CASK

Contributing:
  brew create URL [--no-fetch]
  brew edit [FORMULA|CASK...]

Further help:
  brew commands
  brew help [COMMAND]
  man brew
  https://docs.brew.sh

Discussion