mirror of https://github.com/jkjoy/hugoblog.git
19 lines
433 B
Markdown
19 lines
433 B
Markdown
---
|
|
title: "macOS一键安装homebrew国内镜像"
|
|
slug: "macOS_install_homebrew_in_china"
|
|
date: 2022-07-29T07:33:00.000Z
|
|
categories:
|
|
- 分享
|
|
tags:
|
|
- macOS
|
|
---
|
|
|
|
- [X] 国内镜像的一键安装脚本
|
|
|
|
官方给出的一键安装由于墙的原因可能无法安装成功。
|
|
所以找到了一个国内镜像的一键安装脚本
|
|
|
|
```bash
|
|
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
|
|
```
|