Homebrew Chinese Mirror Installation and Configuration

1, delete the old Homebrew

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

2. Download the new Homebrew installation script

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

3, edit brew_install file (ustc source is the Chinese University of Science and Technology)

#BREW_REPO = "https://github.com/Homebrew/brew".freeze
BREW_REPO = "git://mirrors.ustc.edu.cn/brew.git".freeze

4, replace homebrew-bottles (pre-compiled binary packet) Address

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

5, script execution brew_install

/usr/bin/ruby ./brew_install

See something that is successfully installed

==> Installation successful!

==> Homebrew has enabled anonymous aggregate formulae and cask analytics.
Read the analytics documentation (and how to opt-out) here:
  https://docs.brew.sh/Analytics
No analytics data has been sent yet (or will be during this `install` run).

==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
  https://github.com/Homebrew/brew#donations
==> Next steps:
- Run `brew help` to get started
- Further documentation: 
    https://docs.brew.sh

Guess you like

Origin www.cnblogs.com/enochzzg/p/12381355.html