mac 上brew 的安装

Mac安装Brew安装命令如下:
curl -LsSf http://github.com/mxcl/homebrew/tarball/master | sudo tar xvz -C/usr/local --strip 1

当brew安装成功后,就可以随意安装自己想要的软件了,例如wget,命令如下:
sudo brew install wget

卸载的话,命令如下:
sudo brew uninstall wget

查看安装软件的话,命令如下:
sudo brew search /apache*/

注意/apache*/是使用的正则表达式,用/分割。

问题:在使用brew来安装的软件的时候显示如下错误的时候,很可能是brew的安装以及配置文件ucnzia问题,所以,需要重新安装brew工具,就如上面的一样。
sh-3.2# sudo brew install appledoc
Error: Cowardly refusing to sudo brew install
You can use brew with sudo, but only if the brew executable is owned by root.
However, this is both not recommended and completely unsupported so do so at
your own risk.

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