Homebrew在mac中,就像centos中的yum或者ubuntu中的apt-get,地位尤其重要。用了好几年,一直都是0.x.x,终于到1.x了。
有一个明显的变化:
在0.x版本,工作目录是/usr/local,太霸道了。1.0以后,修改为/usr/local/Homebrew
,终于找到自己的定位了。也还/usr/local自由了。
发现tsinghua的brew镜像不能用了,官网的反而快了。
官网:
http://brew.sh/index_zh-cn.html
安装:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
安装软件
brew search wget
brew install wget
配置镜像
cd $(brew --repo)
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
brew update
#Homebrew-bottles 镜像
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile
虽然tsinghua的镜像暂时不可用,不过以防万一,先保留镜像配置:
Homebrew:
vi $(brew –repo)/.git/config
[remote "origin"]
#official
url = https://github.com/Homebrew/brew
#url = https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
#url = git://mirrors.ustc.edu.cn/brew.git
Home Core:
vi $(brew –repo)/Library/Taps/homebrew/homebrew-core/.git/config
[remote "origin"]
url = https://github.com/Homebrew/brew
#url = https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
#url = git://mirrors.ustc.edu.cn/homebrew-core.git
homebrew-cask
使用homebrew的时候你会发现它可以找到的都是shell运行的应用,UI应用是没有的。homebrew-cask就是扩展homebrew仓库以支持UI应用的插件,其实他是一个第三个仓库,在homebrew里叫一个Tap。
他其实是应用的索引,跟homebrew一样也是一个git仓库。
如果你要使用该插件,直接运行brew cask list
它就会自动查找插件,没有的话就会从github上clone下来。保存的目录是$(brew --repo)/Library/Taps/caskroom/homebrew-cask
,它对应的github地址是:https://github.com/caskroom/homebrew-cask.git
很不幸的事情又发生了,网速慢的想死。好在有办法,你可以将该仓库镜像到git.oschina.net,然后使用自己的仓库。记得定时同步一下镜像。
我镜像了一份,你可以尝试使用,在流量没有大到让@红薯 爆炸的情况下我不会删除,而且会每周同步。
https://git.oschina.net/pollyduan/homebrew-cask.git
怎么手动安装这个Tap呢?
mkdir -p $(brew --repo)/Library/Taps/caskroom
cd $(brew --repo)/Library/Taps/caskroom
git clone https://git.oschina.net/pollyduan/homebrew-cask.git
再次运行brew cask list
就可以了。
使用方式跟brew基本命令类似,只是在brew后面紧跟一个cask,如我要安装atom:
$ brew cask search atom
==> Exact match
atom
$ brew cask install atom
...
更多使用方法使用帮助命令查看帮助信息:brew cask help