0
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?

Homebrewのインストール方法

Posted at

PCを新調した際にHomebrewをインストールしたので、その手順をまとめます。

インストールされているかの確認

まず以下のコマンドを入力します。

brew -v

Homebrewがインストールされていれば現在のバージョンが表示されますが、
以下が表示された場合はインストールされていません。

command not found: brew

Homebrewのインストール

以下を入力します。

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

パスワードを求められたらPCのログイン時のパスワードを入力します。
RETURNかENTERを押すよう求められるので、Enterを押すとインストールが進みます。

インストール中↓

==> Downloading and installing Homebrew...

完了すると以下が表示されます↓

==> Installation successful!

Homebrewを設定する

Next steps:に記載されているコマンドを順番に実行します。

% echo >> /Users/あなたのユーザー名/.zprofile
% echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/あなたのユーザー名/.zprofile

あなたのユーザー名は自身のPCで設定しているユーザー名に置き換えてください。

/Users/あなたのユーザー名/.zprofileに移動して.zprofileファイルをダブルクリックで開きます。
ファイルの中にeval "$(/opt/homebrew/bin/brew shellenv)"が記載されていればOKです。

.zprofileファイルは隠しファイルのため、表示されていない場合はファイルの階層でshift + command + .のショートカットを押すと、表示を切り替えることができます。

最後に以下のコマンドを入力して、Homebrewを反映させれば完了です。

eval "$(/opt/homebrew/bin/brew shellenv)"

Homebrewが反映されているか確認

Homebrewが無事にインストールされたかどうかを確認します。
以下のコマンドを入力します。

brew -v

以下のようにバージョンが表示されればOKです。

Homebrew 4.4.6
0
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
0
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?