Mac 安装 Homebrew
2020-06-25 本文已影响0人
CHMAX
安装命令如下:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
问题一、Connection refused
在执行安装命令的时候,多数会遇到下面的问题,原因一般都是被“墙”了。
curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
如果你有梯子的话,可以先把梯子搭好:
# 因为是 https 请求,可以只设置前面的 https_proxy
export https_proxy=http://127.0.0.1:1081 http_proxy=http://127.0.0.1:1081
现在再次执行命令,就可以成功下载安装脚本,并开始执行了。
问题二、xcode-select 安装失败
在执行安装脚本的过程中可能出现如下异常:
==> /usr/bin/sudo /usr/bin/xcode-select --install
xcode-select: note: install requested for command line developer tools
Press any key when the installation has completed.
==> /usr/bin/sudo /usr/bin/xcode-select --switch /Library/Developer/CommandLineTools
xcode-select: error: invalid developer directory '/Library/Developer/CommandLineTools'
Failed during: /usr/bin/sudo /usr/bin/xcode-select --switch /Library/Developer/CommandLineTools
原因是执行 xcode-select --install
命令时,下载对应软件失败导致的,我们可以到 Developer Apple 上手动下载对应的 Command Line Tools
进行安装:
安装之后,再次执行 Homebrew 的安装命令,即可安装成功。