brew for mac安装

cd /usr/local
sudo mkdir homebrew
curl -L https://github.com/mxcl/homebrew/tarball/master | sudo tar xz --strip 1 -C homebrew
cd homebrew/bin
./brew -v
file brew
cat brew | moresudo ./brew update

如果“brew update”命令执行出错,请确保文件夹/usr/local的所有者权限是你本人而不是root:
sudo chown $USER /usr/localbrew updat

在".bash_profile"中更新路径配置
(如果~下没有文件".bash_profile" 请执行: touch '.bash_profile' ,存在直接打开:open -e .bash_profile )
加入路径:
export PATH=$PATH:/usr/local/homebrew/bin

保存:source .bash_profile
之后可以直接执行brew(不用./brew)

你可能感兴趣的:(brew for mac安装)