Brew(homebrew)
1、简介
Brew 是 Mac 下面的包管理工具,通过 Github 托管适合 Mac 的编译配置以及 Patch,可以方便的安装开发工具。 Mac 自带ruby 所以安装起来很方便,同时它也会自动把git也给你装上。官方网站: http://brew.sh 。
安装完成之后,建议执行一下自检,
brew doctor。
如果看到Your system is ready to brew. 那么你的brew已经可以开始使用了。
安装:打开terminal,输入如下命令
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"
自检:
brew doctor
2、使用brew安装软件
一个命令搞定,比如安装git
brew install git
3、使用brew卸载软件
brew uninstall git
4、使用brew查询软件
brew search /wge*/ // /wge*/是个正则表达式,需要包含在/中
5、常用命令: (所有软件以PHP5.5为例子)
1 brew update #更新brew可安装包,建议每次执行一下
2 brew search php55 #搜索php5.5
3 brew tap josegonzalez/php #安装扩展<gihhub_user/repo>
4 brew tap #查看安装的扩展列表
5 brew install php55 #安装php5.5
6 brew remove php55 #卸载php5.5
7 brew upgrade php55 #升级php5.5
8 brew options php55 #查看php5.5安装选项
9 brew info php55 #查看php5.5相关信息
10 brew home php55 #访问php5.5官方网站
11 brew services list #查看系统通过 brew 安装的服务
12 brew services cleanup #清除已卸载无用的启动配置文件
13 brew services restart php55 #重启php-fpm
注意:brew services 相关命令最好别经常用了,提示会被移除
1 ~ brew services restart php55
2 Warning: brew services is unsupported and will be removed soon.
3 You should use launchctl instead.
4 Please feel free volunteer to support it in a tap.
5
6 Stopping `php55`... (might take a while)
7 ==> Successfully stopped `php55` (label: homebrew.mxcl.php55)
8 ==> Successfully started `php55` (label: homebrew.mxcl.php55)
Homebrew-cask
参考链接
homebrew-cask,官网传送, 是一套建立在homebrew基础上的Mac软件安装命令行工具。与brew的区别就是,后者侧重于软件套件和软件环境的配置安装,而前者是mac平台软件。
- 安装步骤
- 安装Xcode(Mac App Store安装)
- 安装homebrew(上面介绍的一行命令搞定)
- 安装homebrew-cask
brew install caskroom/cask/brew-cask
- homebrew-cask 的使用
- 安装应用,打开shell,输入
brew cask install XXX
,将XXX替换成你想要安装的软件名称即可 - 其他命令
brew cask search //列出所有可以被安装的软件
brew cask search drop //查找所有和drop相关的应用
brew cask info thunder //查看 迅雷 应用的信息
brew cask uninstall qq //卸载 QQ- 软件更新
- homebrew-cask作为软件安装工具体验是不错的(相比你要自己到网页上搜索,下载,拖转安装)
- 大部分软件都有自更新的功能,体验也不错,绝大多数只需要一次点击就能更新
- 实际上软件更新没有那么频繁,使用brew cask uninstall qq && brew cask install qq 也比上网自己下载更新方便
特别注意
homebrew-cask 是将应用程序放置在/opt/homebrew-cask/Caskroom/下,会在你的家目录中的「应用程序」文件夹中创建一个类似快捷方式的替身。在Finder的偏好设置中,第三个侧边栏勾选上你的家目录,这样找应用会方便一些。但不用太担心你,Launchpad是会找到这个目录下的应用的,需要Alfred支持请查看brew cask alfred。
- 软件更新
- 安装应用,打开shell,输入