Homebrew
- homebrew是一款Mac OS平台下的软件包管理工具,拥有安装、卸载、更新、查看、搜索等很多实用的功能。
Homebrew常用命令
- 
查看brew的帮助:brew –help 
- 
安装软件:brew install git 
- 
卸载软件:brew uninstall git 
- 
搜索软件:brew search git 
- 
显示已经安装软件列表:brew list 
- 
更新软件,把所有的Formula目录更新,并且会对本机已经安装并有更新的软件用*标明:brew update 
- 
更新某具体软件:brew upgrade git 
- 
查看软件信息:brew [info | home] [FORMULA...] 
- 
删除程序,和upgrade一样,单个软件删除和所有程序老版删除: 
 brew cleanup git
 brew cleanup
- 
查看那些已安装的程序需要更新: 
 brew outdated
- 
其它Homebrew指令: 
 brew list : 列出已安装的软件
 brew update: 更新Homebrew
 brew home: 用浏览器打开homebrew首页
 brew info: 显示软件内容信息
 brew deps : 显示包依赖
 brew -h : 帮助
Python
使用homebrew安装python
- brew search python (先查询python版本)
- brew install pythonX(下载你需要的python版本)
