今天在使用brew安装composer的时候遇到一个错误,如下今天在使用brew安装composer的时候遇到一个错误,如下:
产生问题的原因:
因为home brew的源是国外的,下载的时候有可能因为网络原因导致错误。
解决方式:
需要切换home brew的源,可以选择中科大源,也可以使用清华源,我使用的是中科大的,代码如下:
// 执行下面这句命令,更换为中科院的镜像:
git clone git://mirrors.ustc.edu.cn/homebrew-core.git/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core --depth=1
// 把homebrew-core的镜像地址也设为中科院的国内镜像
cd "$(brew --repo)"
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
// 更新
brew update
// 使用
brew install node
//回到家目录
cd ~
修改源以后,在执行brew install composer
,已经成功安装