ここではmacにhomebrewをインストールした際のコマンドを記載します。
参考(公式)
公式っぽい以下のサイトを参考にしています。
インストール
コマンド
公式のサイトに記載のインストールコマンドは以下です。(2020年2月現在)
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
実行
実際に実行してみます。以下のようになりました。
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
==> This script will install:
/usr/local/bin/brew
/usr/local/share/doc/homebrew
…(略)…
==> 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
$
実行の際、途中で以下のように入力待ちになります。問題なければそのままエンターを押します。
Press RETURN to continue or any other key to abort
アップデート確認
インストール直後なので大丈夫ですが、アップデートのコマンドも実行しておきます。
$ brew update
Already up-to-date.
$
アップデートなしとなりました。OKです。
コメント