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?

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

Last updated at Posted at 2024-03-17

概要

今回はMacにHomebrewをインストールする方法をまとめたいと思います。

情報

HomebrewをインストールするMacOSのPCの情報を下記に記載します。ちなみに完全にプライベートのPCです。

項目 情報
機種 MacBook Air (11-inch, Mid 2012)
OS macOS Catalina
プロセッサ Intel Core i5
メモリ 8 GB
グラフィックス Intel HD Graphics 4000 1536 MB

方法

Homebrewのインストール

ターミナルを開きコマンドを入力できる状態にします。

下記サイトにアクセスします。

「インストール」の下に記載されているURLをコピーします。

macOS(またはLinux)用パッケージマネージャー_—_Homebrew-1024x509.png

コピーしたコマンドをターミナルに入りつけて実行します。パスワードの入力を求められたら入力してEnterを押下します。

「Press RETURN to continue or any other key to abort」が表示されたらEnterを押下します。

「Next steps: Run brew help to get started」という文字列が表示されたらインストールは完了しました。

インストールが完了したら下記コマンドを実行してインストールされたHomebrewのバージョンを確認します。このコマンドが正常に実行できたらHomebrewが正常にインストールできています。

brew --version

2024/11/26 追記

「インストール」の下に記載されているURLをコピーします。

上記の内容実施時に下記のような内容が出力されるようになりました。

    echo >> /Users/shunokawa/.zprofile
    echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/shunokawa/.zprofile
    eval "$(/opt/homebrew/bin/brew shellenv)"

お使いのシェルに合わせて指定のコマンドの実行をお願いします。
筆者はbashを使っているので下記を実行しました。

    echo >> /Users/shunokawa/.bash_profile
    echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/shunokawa/.bash_profile
    eval "$(/opt/homebrew/bin/brew shellenv)"
    source ~/.bash_profile
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?