homebrew软件管理工具(mac)

1.安装

官网:http://brew.sh/index_zh-cn.html
安装:
 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
卸载:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
环境变量:
vim ~/.bash_profile
export PATH=/opt/local/bin:$PATH
source ~/.bash_profile

2.常用

安装软件:brew install wget
卸载软件:brew uninstall wget
查询软件:brew search /wge*/
列出已安装软件:brew list
更新brew:brew update
用浏览器打开官网:brew home
显示软件信息:brew info
显示包依赖:brew deps

3.帮助

  Run `brew help` to get started
  Further documentation: https://git.io/brew-docs
  ==> Homebrew has enabled anonymous aggregate user       behaviour analytics
  Read the analytics documentation (and how to opt-out) here:
  https://git.io/brew-analytics

4.homebrew安装指定版本 or 老版本

问题:最近项目需要gradle 2.2.1 结果brew install gradle装的是 3.0,如何装指定的2.2.1版本呢?网上很多 brew versions ,但是会报command unknow,下面就说下 ios 10.x的解决方法

答案:
1.先查看一下可以用的版本
    brew search gradle    #能看到有我们需要的221   
    如果列出的东西不一样,可以先运行下面这个命令:
    brew tap homebrew/versions
Paste_Image.png
2.解链接
  brew unlink gradle   #取消3.0的使用 ,详细的去官网看下 link unlink的原理

3.安装2.2.1版本
    brew install homebrew/versions/gradle221
    brew -version  #验证安装成功
homebrew软件管理工具(mac)_第1张图片
Paste_Image.png
 4.版本切换
   如图
homebrew软件管理工具(mac)_第2张图片
Paste_Image.png

你可能感兴趣的:(homebrew软件管理工具(mac))