11
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

brew インストール直後にbash: brew: command not foundと出た話

Last updated at Posted at 2021-02-10

目的

  • brewをインストールを直後にbrewコマンドがうまく実行されなかったので解決方法をまとめる

実施環境

  • ハードウェア環境(下記の二つの環境で確認)
項目 情報
OS macOS Catalina(10.15.5)
ハードウェア MacBook Pro (13-inch, 2020, Four Thunderbolt 3 ports)
プロセッサ 2 GHz クアッドコアIntel Core i5
メモリ 32 GB 3733 MHz LPDDR4
グラフィックス Intel Iris Plus Graphics 1536 MB
  • ソフトウェア環境
項目 情報 備考
Homebrew バージョン 2.3.0 公式ページのコマンドを実行したHomebrew

問題

  • インストール後に下記コマンドを実行してbrewの導入確認を実施したところ下記のエラーが発生した。

    brew -v
    > bash: brew: command not found
    

解決策

  1. 下記コマンドを実行してパスを通す。

    echo export PATH='/usr/local/bin:$PATH' >> ~/.bash_profile
    
  2. 下記を実行して設定ファイルを読み込む。

    source ~/.bash_profile
    

追記

  1. 本記事投稿後、かなり時間が経ってから新しいMacにbrewをインストールしてちょっとだけ詰まったのでまとめる

  2. ちなみにshellはbashを使っている。

  3. 「Next steps」に記載されている内容をbashに合わせて実行する。

    _bash_profile.png

  4. 下記を実行してみた。

    $ echo '# Set PATH, MANPATH, etc., for Homebrew.' >> ~/.bash_profile
    $ echo 'eval $(/opt/homebrew/bin/brew shellenv)"' >> ~/.bash_profile
    $ eval "$(/opt/homebrew/bin/brew shellenv)"
    
  5. 問題解決

    $ brew -v
    Homebrew 3.6.21
    
11
9
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
11
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?