Homebrew — macOS 不可或缺的套件管理器,Homebrew官方网站如此介绍自己!!!
中文官网:https://brew.sh/index_zh-cn.html
一,安装
打开shell执行下面命令
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
注意问题:如果执行这个命令,中间运行时候卡住,那么你应该在Mac OS 10.12解决如何访问谷歌的问题后,再执行上面命令就可以安装Homebrew了!
二,更新Homebrew源
为什么更新Homebrew源,和上面注意问题是一样的原因,把Homebrew的源更换为国内的源,肯定是更好!!!
在shell里依次执行下面命令:下面命令更新的源为中科大的源,如果你在使用过程中觉得不满意,你也可以随时更换为其它的源!
A,替换brew.git:
cd "$(brew --repo)"
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
B,替换homebrew-core.git:
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
三,使用homebrew
- 安装软件:brew install 软件名,例:brew install wget
- 搜索软件:brew search 软件名,例:brew search wget
- 卸载软件:brew uninstall 软件名,例:brew uninstall wget
四,安装linux下的gedit,并使用它
执行下面命令进行安装:
brew install gedit
下面的截图是安装完gedit,使用它的截图:
参考:
https://lug.ustc.edu.cn/wiki/mirrors/help/brew.git