美文网首页
Homebrew 基本命令

Homebrew 基本命令

作者: lemon_jun | 来源:发表于2019-01-17 15:07 被阅读0次
    image.png
    官网地址:https://brew.sh/
    选择中文版,按网站提示安装管理插件

    常用命令:
    brew outdated 显示安装的软件 可更新列表
    brew upgrade 更新所有可更新的包(一般使用这个)
    brew upgrade 包名 更新指定的包
    brew cleanup 清理所有包的旧版本
    brew cleanup 包名 清理指定包的旧版本
    brew cleanup -n 查看可清理的旧版本包,不执行实际操作
    brew pin 包名 锁定某个包
    brew unpin 包名 取消锁定
    brew info 包名 显示某个包的信息
    brew deps --installed --tree 查看已安装的包的依赖,树形显示

    如果长时间不去更新homebrew 可以先去homebrew目录 git pull origin master 一下
    然后在brew update 以免发生错误

    使用过程中错误:
    1、

    Error: Calling the `gpg` stanza is disabled! There is no replacement.
    上报某某某文件头。。。。。。。。。
    

    解决办法:https://discourse.brew.sh/t/solved-brew-search-fails-with-error-calling-the-gpg-stanza-is-disabled-there-is-no-replacement/3472

    还有一种:强制用master分支代码 覆盖本地homebrew 的git目录(我使用的这种 有效)。
    git fetch --all && git reset --hard origin/master && git pull

    2、

    Error: Another active Homebrew update process is already in progress.
    Please wait for it to finish or terminate it to continue.
    

    解决方法 ps aux | grep brew.sh 查看 是update操作的,kill -9 对应的PID即可

    相关文章

      网友评论

          本文标题:Homebrew 基本命令

          本文链接:https://www.haomeiwen.com/subject/eusidqtx.html