之前的文章《淺析JS中base64和圖片互相轉換(附代碼)》中,給大家了解了JS中base64和圖片互相轉換。下面本篇文章給大家介紹怎么使用mac安裝配置homebrew,我們一起看看怎么做。
最近換電腦了,發(fā)現homebrew
安裝不上了,我感覺是網絡問題,連了個vpn
,發(fā)現還是不行,哈哈,是姿勢不對
安裝
運行下面自動腳本(已經全部替換為國內地址):
(Mac)常規(guī)安裝腳本(推薦完全體幾分鐘安裝完成)
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
(Mac)精簡版幾秒鐘安裝完成
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" speed
(Mac)卸載腳本
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)"
(Linux)安裝腳本:
rm Homebrew.sh ; wget https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh ; bash Homebrew.sh
(Linux)卸載腳本:
rm HomebrewUninstall.sh ; wget https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh ; bash HomebrewUninstall.sh
安裝問題
如果發(fā)現有各種安裝不上的運行:
sudo rm -rf /usr/local/Homebrew
提示系統太舊的 (Failed to install Homebrew Portable Ruby (and your system version is too old)!) 運行:
HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles/bottles-portable-ruby rm -rf /Users/$(whoami)/Library/Caches/Homebrew/ brew update
切換鏡像源
阿里云homebrew
配置方法:[https://developer.aliyun.com/mirror/homebrew]。
# 替換brew.git: cd "$(brew --repo)" git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git # 替換homebrew-core.git: cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" git remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git # 應用生效 brew update # 替換homebrew-bottles: echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.bash_profile source ~/.bash_profile
騰訊云homebrew
配置方法:Homebrew
鏡像使用幫助
[https://mirrors.cloud.tencent.com/help/homebrew.html]。
cd "$(brew --repo)" git remote set-url origin http://mirrors.cloud.tencent.com/git/homebrew/brew.git cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" git remote set-url origin http://mirrors.cloud.tencent.com/git/homebrew/homebrew-core.git brew update
配置方法:Homebrew-bottles
鏡像使用幫助
[https://mirrors.cloud.tencent.com/help/homebrew-bottles.html]。
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.cloud.tencent.com/homebrew-bottles' >> ~/.bash_profile source ~/.bash_profile
中科大homebrew
配置方法:Homebrew
源使用幫助[http://mirrors.ustc.edu.cn/help/brew.git.html]。
cd "$(brew --repo)" git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
配置方法:Homebrew Core
源使用幫助[http://mirrors.ustc.edu.cn/help/homebrew-core.git.html]。
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
配置方法:Homebrew Bottles
源使用幫助[http://mirrors.ustc.edu.cn/help/homebrew-bottles.html]。
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile source ~/.bash_profile
推薦學習:MacOS教程