0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Homebrewをインストールする

Last updated at Posted at 2021-01-27

本記事では、MacにHomebrewをインストールする。

Homebrewとは

Homebrewは、Appleが提供していないものをインストールすることができるパッケージマネージャー。

Homebrewのインストール

Homebrewの公式サイトに記載されているコマンドをコピーしてターミナルから実行する。

image.png

以下のコマンドをターミナルから実行

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

完了すると以下のようなメッセージが表示される。

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

==> Next steps:
- Run `brew help` to get started
- Further documentation: 
    https://docs.brew.sh

動作確認

今回はバージョンをbrewコマンドで確認しインストールに成功しているか確認する。

% brew -v
Homebrew 2.7.6
Homebrew/homebrew-core (git revision 5830b8; last commit 2021-01-27)

バージョンが表示されれば無事にインストールに成功している。

0
1
1

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?