Mac OS下包管理器Homebrew几个简单的管理命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac OS下包管理器Homebrew几个简单的管理命令相关的知识,希望对你有一定的参考价值。
1、安装Homebrew
将如下命令粘贴至终端运行:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
或者可以直接登录网站:https://brew.sh/index_zh-cn.html,会有提示如何安装。
2、基本使用
(1)安装软件
# brew install PKG_NAME brew install tmux
(2)搜索软件
# brew serarch PKG_NAME brew search wget wget wgetpaste
(3)查看软件信息
# brew info PKG_NAME brew info wget
(4)卸载软件
# brew uninstall PKG_NAME brew uninstall wget
3、更新Homebrew
brew update
4、卸载Homebrew
将如下命令粘贴至终端运行即可卸载Homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
5、官方FAQ
Reference:
http://www.jianshu.com/p/d229ac7fe77d
本文出自 “WangJian的IT之路!” 博客,请务必保留此出处http://asherwang.blog.51cto.com/11255017/1929586
以上是关于Mac OS下包管理器Homebrew几个简单的管理命令的主要内容,如果未能解决你的问题,请参考以下文章