Homebrew、Git、adb安装

安装Homebrew

首先使用Homebrew官网的安装shell命令安装:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

会出现如下错误(或许是网络或者其他原因):

fatal: unable to access 'https://github.com/Homebrew/brew/': LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

Failed during: git fetch --force origin

试了网上的各种办法,改hosts、git config --global http proxy都不行。我们可以使用gtee代理的下载地址:

/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

下载选择1,y。请自行备份。->是否现在开始执行脚本(N/Y) y

直至安装完成会发现,环境变量也自动配置好了。此时还会提示你设置默认源,我选择5 阿里巴巴的源。

最后brew -v查看下安装成功了。


安装Git

命令查看是否安装了Git:

git --version 

如果没有,安装命令:

brew install git

遇到报错,配置下面两个git目录就好了

git config --global --add safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-core

git config --global --add safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-cask


安装adb

brew install --cask android-platform-tools


安装python

brew install python3

你可能感兴趣的:(Homebrew、Git、adb安装)