【Other|Mac Homebrew 安装与卸载】
文章图片
Homebrew 是一款Mac OS平台下的软件包管理工具,拥有安装、卸载、更新、查看、搜索等很多实用的功能。简单的一条指令,就可以实现包管理,而不用你关心各种依赖和文件路径的情况,十分方便快捷。
一、Homebrew 安装与卸载
- 安装方式一
(推荐)
:(使用 科大源 进行安装)
- 安装
$ /bin/bash -c "$(curl -fsSL https://gitee.com/ineo6/homebrew-install/raw/master/install.sh)"
- 卸载
$ /bin/bash -c "$(curl -fsSL https://gitee.com/ineo6/homebrew-install/raw/master/uninstall.sh)"
- 如果报错
Error: No similarly named formulae found.
,则更换一下homebrew-core
文件即可,如果git clone
的方式慢,也可以直接打开链接进行下载,将下载的文件夹改成homebrew-core
替换掉之前的homebrew-core
文件即可。
$ cd /usr/local/Homebrew/Library/Taps/homebrew/ $ rm -rf homebrew-core $ git clone https://github.com/Homebrew/homebrew-core.git
- 安装方式二:(完全纯官方安装,但是需要配置
host
,githubusercontent
国内访问不了)
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
安装报错这个,试试连接梯子:
curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection reset by peer
- 卸载
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)"
卸载过程中根据提示进行操作
dengzemiaodeMacBook-Pro:~ dengzemiao$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)" Warning: This script will remove: /Users/dengzemiao/Library/Caches/Homebrew/ /usr/local/Caskroom/ /usr/local/Cellar/ /usr/local/bin/brew -> /usr/local/bin/brew Are you sure you want to uninstall Homebrew? This will remove your installed packages! [y/N] ......
- 安装包
$ brew install 包名
示例:
$ brew install node
- 卸载包
$ brew uninstall 包名
示例:
$ brew uninstall node
- 查询可用包
$ brew search 包名
- 查看已安装包列表
$ brew list
- 查看任意包信息
$ brew info 包名
- 查看版本
$ brew -v
- 更新 Homebrew
$ brew update
- Homebrew 帮助信息
$ brew -h
- brew update 长时间没反应(或卡在 Updating Homebrew…)
- Mac 下镜像飞速安装 Homebrew 教程
- 注意事项:在
Mac OS X 10.11
系统以后,/usr/local/
等系统目录下的文件读写是需要系统root
权限的,以往的Homebrew
安装如果没有指定安装路径,会默认安装在这些需要系统root
用户读写权限的目录下,导致有些指令需要添加sudo
前缀来执行,比如升级Homebrew
需要:
$ sudo brew update
- 报错
echo 'export HOMEBREW_GITHUB_API_TOKEN=your_token_here' >> ~/.bash_profile
dengzemiaodeMacBook-Pro:~ dengzemiao$ brew search nginx Warning: Error searching on GitHub: GitHub Bad credentials:The GitHub credentials in the macOS keychain may be invalid. Clear them with: printf "protocol=https\nhost=github.com\n" | git credential-osxkeychain erase Or create a personal access token: https://github.com/settings/tokens/new?scopes=gist,public_repo&description=Homebrew echo 'export HOMEBREW_GITHUB_API_TOKEN=your_token_here' >> ~/.bash_profile==> Formulae nginx
解决方式:
1、点击错误中的链接,就会打开github
页面,进入页面之后直接滚到底部点击Generate token
按钮,然后拷贝得到的token
:
https://github.com/settings/tokens/new?scopes=gist,public_repo&description=Homebrew
文章图片
文章图片
$ export HOMEBREW_GITHUB_API_TOKEN=填入你刚才得到的Token
例如:
$ export HOMEBREW_GITHUB_API_TOKEN=465832bc2dd057a2c556f...
推荐阅读
- Other|Mac 系统占用100G+解决办法(详细步骤)
- PC/SC在android上的移植
- WINDOWS系统内存限制 WIN7,WIN8,WIN10,WIN2008,WIN2012,WIN2016
- Other|悬浮窗一个怎么够(微信新版本满足你的一心多用)
- 10款用 jquery 实现滚动条至页面底端自动加载数据效果
- Jenkins主从点设置
- Other|全国银行SWIFT代码查询
- Windows|使用WMIC永久设置你的环境变量
- kernel version 367.48. does not match DSO version 367.57