Mac使用brew安装是报错:zsh: command not found: brew
步骤:
1.在浏览器中打开https://raw.githubusercontent.com/Homebrew/install/master/install.sh ,很多文章还在用的脚本链接是老的了,官网已替换为这个。
2.将此网页内容另存为install.sh
3.下载之后:将1内容找到并注释,替换成2内容(如果可以翻墙,并且有足够长的时间,可以不做这步,耐心等待即可,如果未执行此步,安装成功之后再替换Homebrew镜像源,安装其它内容速度会变快,替换镜像源可以参考我的另一篇文章:Mac替换Homebrew镜像源)
#找到并注释
1.BREW_REPO="https://github.com/Homebrew/brew"
#将上面内容替换为下行内容
2.BREW_REPO="git://mirrors.ustc.edu.cn/brew.git"
4.修改install.sh权限,并运行脚本
#命令行中进入此脚本(install.sh)所在位置,执行以下内容
1.chmod 755 install.sh
2../install.sh
5.如果报错BREW_REPO not found,更换到中科院的镜像,我没有报错,所以未执行以下内容:
git clone git://mirrors.ustc.edu.cn/homebrew-core.git//usr/local/Homebrew/Library/Taps/homebrew/homebrew-core --depth=1
参考文章:https://blog.csdn.net/seven_28/article/details/104934623
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。