当前位置:   article > 正文

Homebrew的安装与使用_gitee cunkai homebrew

gitee cunkai homebrew

安装

官网: Homebrew官网

国内安装地址:

苹果电脑 常规安装脚本(推荐 完全体 几分钟安装完成):

/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
  • 1

苹果电脑 极速安装脚本(精简版 几秒钟安装完成):

/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" speed
  • 1

苹果电脑 卸载脚本:

/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)"
  • 1

常见错误去下方地址查看

https://gitee.com/cunkai/HomebrewCN/blob/master/error.md
  • 1

Linux电脑 安装脚本:

rm Homebrew.sh ; wget https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh ; bash Homebrew.sh
  • 1

Linux电脑 卸载脚本:

rm HomebrewUninstall.sh ; wget https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh ; bash HomebrewUninstall.sh
  • 1

参考链接: https://zhuanlan.zhihu.com/p/111014448

命令

//查看brew的版本
brew -v

//更新homebrew自己,把所有的Formula目录更新,并且会对本机已经安装并有更新的软件用*标明
brew update

//查看命令帮助:
brew --help

//查看那些已安装的程序需要更新
brew outdated

//更新单个软件:
brew upgrade [包名]
例:brew upgrade git

//更新所有软件:
brew upgrade 

//安装软件
brew install [包名]@版本
例:brew install git

//卸载
brew uninstall [包名]
例:brew uninstall git

//清理所有包的旧版本 (安装包缓存)
brew cleanup 
例:brew cleanup -n  //显示要删除的内容,但不要实际删除任何内容
例:brew cleanup -s  //清理缓存,包括下载即使是最新的版本
例:brew cleanup --prune=1     //删除所有早于指定时间的缓存文件(天)

//清理单个软件旧版本
brew cleanup [包名]
例:brew cleanup git 

//锁定某个包
brew pin $FORMULA  

//取消锁定
brew unpin $FORMULA  

//查看包信息
brew info [包名]
例:brew info git

//查看安装列表
brew list

//查询可用包
brew search [包名]
例:brew search git

//显示包依赖
brew deps [包名]
例: brew deps git
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57

参考链接:

  • https://blog.csdn.net/ace15824843202/article/details/115347348
  • https://zhuanlan.zhihu.com/p/111014448
  • https://www.cnblogs.com/nayek/p/13266167.html
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/558286
推荐阅读
相关标签
  

闽ICP备14008679号