Mac Brewのインストール、使用、アンインストールの詳細


グローバル変数の定義


//主なbrewコマンドディレクトリ/usr/local/bin注:homebrewはインストール完了後に自動的に/usr/local/binにソフト接続を追加するので、普段はこのパスを使っています
sudo vim /etc/profile
export PATH=/usr/local/bin:$PATH
echo $PATH

brewのインストール


公式ホームページ
//  
brew          ,   centos  yum  ubuntu  apt-get,    ,              
brew      /usr/local/Cellar
brew      /usr/local/etc
brew      /usr/local/bin    :homebrew         /usr/local/bin     ,           
//    、      :
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Brew壁による解決策

//    
        ,          ,
          bash   ~/.bash+profile ,
echo export ALL_PROXY=socks5://127.0.0.1:1080 >> ~/.bash_profile
       zsh,    ~/.zshrc 
echo export ALL_PROXY=socks5://127.0.0.1:1080 >> ~/.zsh_profile
         ,                  

homebrewミラーソースを置き換えます(自分で交換するかどうかを選択します)

cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin git://mirrors.ustc.edu.cn/homebrew-core.git
//        bash      
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 ~/.bash_profile
source ~/.zshrc 
brew update

削除

open /usr/local
  Homebrew