0
0

homebrew install時にwarningが出る'Warning: /opt/homebrew/bin is not in your PATH.'

Posted at

今回の問題

homebrewインストールするために以下コマンドを打ったがwarningが表示されてしまう

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

途中までは成功かと思われたが出力の途中でWarningが表示された
エラー内容一部抜粋

Warning: /opt/homebrew/bin is not in your PATH.

対策

パスが通ってないのでパスを通してあげる
以下コマンドを打てば良い。

export PATH="$PATH:/opt/homebrew/bin"

その後以下のコマンドでバージョンが表示されればOK

brew --version
0
0
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
0