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?

macOS Sequoia 15.1 zshでbrewがターミナルから使えない時の対処法

Last updated at Posted at 2024-12-01

brewを環境変数に追加する

brewをインストールしたのに、command not foundエラーが出る場合、環境変数のパスが通っていないことが原因である。

export PATH=/opt/homebrew/bin:$PATH
このコマンドを実施。その後

brew --version
で、現在のバージョンを確認できればOK。

環境変数に追加するとは

環境変数 PATH は、コマンドを実行する際にシステムがどのディレクトリを探すかを決めるものである。これで /opt/homebrew/bin 内のプログラムが、他のディレクトリにあるものより優先して実行されるようになる。

追記

環境変数を~/.zshrcに登録しなければ、上記のコマンドを毎回打たなくてはならない。
以下の手順を行うと解決される。

1.~/.zshrcを好きなエディタで開く

code ~/.zshrc
codeはVScodeを開きます。nanoなどのエディタも使えるので好きなものを使ってください。

2.~/.zshrcに環境変数を登録する

export PATH="/opt/homebrew/bin:$PATH"
これを書き加えて保存してください。
/opt/homebrew は、homebrewの通常のインストール場所です。自分のhomebrewがどこにあるかは

brew --prefix

で確認できます。適宜自分の環境で読み替えてください。

3.変更を反映させる

source ~/.zshrc
これで設定が反映されます。

4.設定が反映されているか確かめる

brew --version
バージョンが表示されれば完了です。

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