码迷,mamicode.com
首页 > 其他好文 > 详细

homebrew

时间:2020-02-04 10:44:14      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:基本使用   ref   sele   ack   cell   实用   套件   更新   xcode   

0.介绍

Homebrew是一款Mac OS平台下的软件包管理工具,拥有安装、卸载、更新、查看、搜索等很多实用的功能。简单的一条指令,就可以实现包管理,而不用你关心各种依赖和文件路径的情况,十分方便快捷。

援引官方的一句话:又提示缺少套件啦?别担心,Homebrew 随时守候。Homebrew —— OS X 不可或缺的套件管理器。

github地址

1.安装xcode命令工具

$ xcode-select --install

2.homebrew安装和卸载

  • 安装 $ ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
  • 卸载

    $ cd `brew --prefix
    $ rm -rf Cellar
    $ brew prune
    $ rm `git ls-files
    $ rm -r Library/Homebrew Library/Aliases Library/Formula Library/Contributions
    $ rm -rf .git
    $ rm -rf ~/Library/Caches/Homebrew

3.基本使用

  • 安装包 $ brew install <packname>
  • 卸载包 $ brew uninstall <packname>
  • 查询包 $ brew seach <packname>
  • 查看安装列表 $ brew list
  • 查看包信息 $ brew info <packname>
  • 更新homebrew $ brew update
  • 查看版本 $ brew -v
  • 查看帮助 $ brew -h

homebrew

标签:基本使用   ref   sele   ack   cell   实用   套件   更新   xcode   

原文地址:https://www.cnblogs.com/JokerAlon/p/homebrew.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!