发新帖

[Brew] [Mac] 国内mac 安装brew的方法

零下一度 2020-5-30 1082

在mac系统中,使用homebrew可以很方便的管理包。按照官网的说明执行以下命令时总是安装不上报错:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"


应该是这个资源访问有问题,那么我们可以尝试使用国内的镜像。给大家推荐一个中国科学技术大学的镜像站点,里面有各种资源: https://mirrors.ustc.edu.cn/brew.git

https://mirrors.ustc.edu.cn

言归正传,开始踩坑


第一步,获取install文件  

把官网的brew_install安装脚本通过以下命令下载下来 

curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh >> brew_install


第二步,更改脚本中的资源链接,替换成中国科学技术大学的镜像

就是把这两句 

BREW_REPO = "https://github.com/Homebrew/brew".freeze
CORE_TAP_REPO = "https://github.com/Homebrew/homebrew-core".freeze

改为这两句

BREW_REPO = "https://mirrors.ustc.edu.cn/brew.git".freeze
CORE_TAP_REPO = "https://mirrors.ustc.edu.cn/homebrew-core.git".freeze


当然如果这个镜像有问题的话,可以换成别的,注意:新版本的brew_install脚本文件中取消了

CORE_TAP_REPO = "https://github.com/Homebrew/homebrew-core".freeze这句,可以不用替换。

-更新日期20200225


第三步,执行脚本

/bin/bash brew_install


然后可能卡在了Cloning into '/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core'...,可以看到这几句: 

Cloning into '/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core'...

remote: Enumerating objects: 23, done.

remote: Counting objects: 100% (23/23), done.

remote: Compressing objects: 100% (17/17), done.

error: RPC failed; curl 18 transfer closed with outstanding read data remaining

fatal: the remote end hung up unexpectedly

fatal: early EOF

fatal: index-pack failed

Error: Failure while executing; `git clone https://github.com/Homebrew/homebrew-core /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core` exited with 128.

Error: Failure while executing; `/usr/local/bin/brew tap homebrew/core` exited with 1.

Failed during: /usr/local/bin/brew update --force


出现这个原因是因为源不通,代码来不下来,解决方法就是更换国内镜像源:

执行下面这句命令,更换为中国科学技术大学的镜像:

git clone git://mirrors.ustc.edu.cn/homebrew-core.git/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core


就下载成功了


然后把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 doctor


这样海外和已经有系统全局代理设置的朋友们就可以直接使用 brew 命令安装软件了。


第四步、接着换源


直接使用 Homebrew 还需要更改默认源,不然谁用谁想打人,原因你懂的。以下是将默认源替换为国内 USTC 源的方法。


替换核心软件仓库


cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git


如果你没有安装Homebrew-Cask不用执行下面这句命令替换 cask 软件仓库(提供 macOS 应用和大型二进制文件)

 cd "$(brew --repo)"/Library/Taps/caskroom/homebrew-cask 
 git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git


替换 Bottles 源(Homebrew 预编译二进制软件包)

bash(默认 shell)用户:

 echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile

zsh 用户:

echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.zshrc source ~/.zshrc


具体操作

//更换镜像

git clone git://mirrors.ustc.edu.cn/homebrew-core.git/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core
git clone git://mirrors.ustc.edu.cn/homebrew-cask.git/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-cask
git clone git://mirrors.ustc.edu.cn/homebrew-cask-versions.git/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-cask-versions

//替换核心软件仓

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
cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-cask
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git
cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-cask-versions
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask-versions.git


更换回去git源

cd "$(brew --repo)" 

git remote set-url origin https://github.com/Homebrew/brew.git
cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-core 
git remote set-url origin https://github.com/Homebrew/homebrew-core.git
cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-cask
git remote set-url origin https://github.com/Homebrew/homebrew-cask.git
cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-cask-versions
git remote set-url origin https://github.com/Homebrew/homebrew-cask-versions.git
cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-services
git remote set-url origin https://github.com/Homebrew/homebrew-services.git
cd "$(brew --repo)"/Library/Taps/exolnet/homebrew-deprecated
git remote set-url origin https://github.com/exolnet/homebrew-deprecated.git
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://github.com/homebrew-bottles' >> ~/.bash_profile


提示:brew services - Unknown command: services,说明没有安装services

git clone git://github.com/Homebrew/homebrew-services/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-services 
cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-services 
git remote set-url origin https://github.com/Homebrew/homebrew-services   //此源可以不用切换


brew tap exolnet/homebrew-deprecated:

Error: Failure while executing; `git clone https://mirrors.ustc.edu.cn/exolnet/homebrew-deprecated /usr/local/Homebrew/Library/Taps/exolnet/homebrew-deprecated --origin=origin --template=` exited with 128.

git clone git://github.com/exolnet/homebrew-deprecated /usr/local/Homebrew/Library/Taps/exolnet/homebrew-deprecated


Homebrew基本用法

假定操作对象为 wget,请替换为自己需要的软件包名


操作                                                命令

更新Homebrew                            brew update

更新所有安装过的软件包            brew upgrade

更新指定的软件包                    brew upgrade wget

查找软件包                                    brew search wget

安装软件包                                    brew install wget

卸载软件包                                    brew remove wget

列出已安装的软件包                    brew list

查看软件包信息                            brew info wget

列出软件包的依赖关系                    brew deps wget

列出可以更新的软件包                    brew outdated 


Homebrew的文件夹

Homebrew将本地的/usr/local初始化为git的工作树,并将目录所有者变更为当前所操作的用户,以后的操作将不需要sudo。

-bin 用于存放所安装程序的启动链接(相当于快捷方式)

-Cellar 所有brew安装的程序,都将以[程序名/版本号]存放于本目录下

-etc brew安装程序的配置文件默认存放路径

-Library Homebrew 系统自身文件夹

+–Formula 程序的下载路径和编译参数及安装路径等配置文件存放地


参考资料

Homebrew 中文主页 

https://brew.sh/index_zh-cn.html

Homebrew Bottles 源使用帮助

http://mirrors.ustc.edu.cn/help/homebrew-bottles.html

Homebrew Cask 源使用帮助

http://mirrors.ustc.edu.cn/help/homebrew-cask.git.html

Homebrew Core 源使用帮助

http://mirrors.ustc.edu.cn/help/homebrew-core.git.html


参考:https://blog.csdn.net/qq_35624642/article/details/79682979


最新回复 (0)
返回
零下一度
主题数
928
帖子数
0
注册排名
1