Mac进行Homebrew安装配置
Posted 非花非雾--
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac进行Homebrew安装配置相关的知识,希望对你有一定的参考价值。
Mac进行Homebrew安装配置
文章目录
前言
当前文字转载自:https://www.jianshu.com/p/c460eaa0c354:
例如:随着人工智能的不断发展,机器学习这门技术也越来越重要,很多人都开启了学习机器学习,本文就介绍了机器学习的基础内容。
一、Homebrew是什么?
Homebrew是Mac的包管理器,正如Linux的yum一样。使用包管理器就省去了注册账号、寻找版本、下载、解压、安装等繁琐的步骤。安装的时候使用命令行就可以直接安装,比如安装服务器nginx
brew install nginx
二、Homebrew的安装
1.官网安装
官网下载的话,国内可能会慢,可以按住control+c终止。
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
2.镜像安装
代码如下(示例):
/bin/bash -c "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install.sh)"
安装的homebrew路径是/opt/homebrew/bin/brew
看到Installation succesful表明已经安装完成,并且会Warning让你加入Path
然后执行这两行命令,就能成功添加环境变量
3.切换国内源
Homebrew默认是官网的源,但是官方源会很慢,就有必要切换到我们国内的源了。
- 中科大镜像 https://mirrors.ustc.edu.cn/
- 清华镜像 https://mirrors.tuna.tsinghua.edu.cn/#
- 北京外国语镜像 https://mirrors.bfsu.edu.cn/#
Homebrew主要由4部分组成,分别是brew、homebrew-core、homebrew-bottles和homebrew-cask
- 查看brew当前源
cd "$(brew --repo)" && git remote -v
- 查看brew-core当前源
cd "$(brew --repo homebrew/core)" && git remote -v
- 替换brew
cd "$(brew --repo)" && git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
- 替换homebrew-core
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" && git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
- 替换homebrew-cask
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-cask" && git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git
- 替换bottles
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.zshrc
进行以上修改后,通过source 命令刷新当前配置
source ~/.bash_profile
更新源
brew update
通过以上操作HomeBrew的配置已经完成,可以通过brew命令安装进行测试。
以上是关于Mac进行Homebrew安装配置的主要内容,如果未能解决你的问题,请参考以下文章