macM1 出现 zsh: command not found: brew问题解决方案
程序员文章站
2022-05-28 12:56:48
...
macM1 出现 zsh: command not found: brew问题解决方案
使用mac 命令查看电脑硬盘使用率
新的mac ,想查看ssd 使用,输入命令
brew install smartmontools
smartctl -a /dev/disk1
出现错误
zsh: command not found: brew
解决方案
1 安装brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2 安装过程中出现问题
Warning: /opt/homebrew/bin is not in your PATH.
解决方案
在.zshrc 文件中加入以下
export PATH=/opt/homebrew/bin:$PATH
保存退出。
如果没有这个文件就创建一个,解决
3 查看brew是否安装成功
brew -v
结果成功
Homebrew 3.0.2
Homebrew/homebrew-core (git revision ac905f; last commit 2021-02-24)