当前位置:   article > 正文

brew安装、卸载、常用命令_brew 卸载软件

brew 卸载软件

brew官网

  1. #官网安装脚本
  2. /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  3. #国内安装脚本(自动选在软件源)
  4. /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
  5. #国内卸载脚本
  6. /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)"
  7. #安装:
  8. brew install xxx
  9. #安装包
  10. brew install --cask xxx
  11. #卸载:
  12. brew uninstall xxx
  13. #搜索:
  14. brew search xxx
  15. #检查哪些软件需要更新
  16. brew outdated
  17. #更新:
  18. brew upgrade xxx
  19. #列表:
  20. brew list
  21. #更新brew:
  22. brew update
  23. #清理所有旧版本包
  24. brew cleanup
  25. #清理指定包的旧版本
  26. brew cleanup $FORMULAE
  27. #查看可清理的旧版本包,不执行实践操作
  28. brew cleanup -n
  29. #启动
  30. brew services start xxx
  31. #停止
  32. brew services stop xxx
  33. #重启
  34. brew services restart xxx
  35. #取消安装时自动更新(写入配置到.zsh或者.bash_profile)
  36. echo 'export HOMEBREW_NO_AUTO_UPDATE=true' >> ~/.bash_profile
  37. source ~/.bash_profile
  38. #替换现有源
  39. git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
  40. git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
  41. git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git
  42. brew update
  43. #还原为官方源
  44. git -C "$(brew --repo)" remote set-url origin https://github.com/Homebrew/brew.git
  45. git -C "$(brew --repo homebrew/core)" remote set-url origin https://github.com/Homebrew/homebrew-core.git
  46. git -C "$(brew --repo homebrew/cask)" remote set-url origin https://github.com/Homebrew/homebrew-cask.git
  47. brew update

brew cask 和 formulae的区别

  • Formulae:软件包,包括了这个软件的依赖、源码位置及编译方法等;
  • Casks:已经编译好的应用包,如图形界面程序等。
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号