Mac 安装homebrew

刚入职新公司,公司给配置了一台pro,所以呢需要配置一下环境,该下载啥下载啥,该安装啥安装啥。iOS工程师常用的软件有啥,我就不说了,因为我还是个菜鸟[Facepalm]。主要说一下我安装homebrew 的时候遇到的一个问题。

homebrew 的官网安装方式:

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

会报一个 找不到/Library/Developer/CommandLineTools该目录,可以选择提示的安装一个(xcode-select --install),但其实Xcode 中带这个的。只是脚本文件的路径选择不对,改一下安装脚步文件就好了。

我们首先用命令查看本地tools的位置
xcode-select -p

一般会得到/Applications/Xcode.app/Contents/Developer

接着下载官方脚本https://raw.githubusercontent.com/Homebrew/install/master/install 并保存为 install.sh文件

把文件中的/Library/Developer/CommandLineTools 替换成你刚刚得到的路径/Applications/Xcode.app/Contents/Developer并保存

最后使用命令执行脚本
/usr/bin/ruby -e "$(cat install.sh)" 就ok了。

感谢原文作者

你可能感兴趣的:(Mac 安装homebrew)