M2 macでhomebrewをインストール

目次

マーケター、エンジニアを月1時間からジョインできるプラットフォーム

airteamは月1時間からマーケターやエンジニアに相談できるプラットフォーム。 雇うのはハードル高いけどプロをチームに入れたい。そんな経営者のためのサービスです。 相談にのる方も募集しています。

タスクなしだから月一時間からジョイン可能

作業はなくオンライン相談メイン。 月1時間からさっと経験者に継続的に相談できます。

多様な経験者を雇用するより何倍も早くチームに

あらゆるジャンルの経験者がいるので あなたのチームのノウハウの選択肢が広がります。

NDAはすでに締結済み、契約もスムーズ

契約の煩雑なやりとりはなく、NDAはすでに締結済み、書面のやりとりはありません。

M2macbookairでhomebrewをインストールしたのですが、他のmacと少し違ったのでまとめました。

インストール

https://brew.sh/

まずは今まで通り、homebrewをインストールする。

  • ターミナルを開く
  • 一番上の階層に
  • 上記ページのコマンドを叩く

これで下記ででます

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 three commands in your terminal to add Homebrew to your PATH:
    echo '# Set PATH, MANPATH, etc., for Homebrew.' >> /Users/ユーザー名/.zprofile
    echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/muraokayouhei/.zprofile
    eval "$(/opt/homebrew/bin/brew shellenv)"
- Run brew help to get started
- Further documentation:
    https://docs.brew.sh

上記でInstallation successful!と出ればinstallは成功

pathを通す

次からがM2macの違うところで、インストールだけではなく、pathを通す必要があります。next stepに書かれているコマンドを叩く必要があるのですが、M2だと3つでています。(M1だと2つ

いろいろ調べましたが下記二つだけでもpathが通りました

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