homebrew安装问题解决

要安装Homebrew通常使用官方的安装命令:

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


但使用后,会出现:xcode-select: error: command line tools are already installed, use "Software Update" to install updates


我采取的方案:
1、卸载xcode,然后,重试 Homebrew安装命令;
2、重启机器,然后,重试Homebrew安装命令; 
3、执行: mkdir homebrew && curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew ,然后,重试 Homebrew安装命令;

解决!

可用brew --version查看版本号,有则可用。

你可能感兴趣的:(IOS)