Mac 10.15.5 安装homebrew
程序员文章站
2022-07-03 18:13:15
...
- 测试网络环境,输入这个网址看看能不能打开
https://raw.githubusercontent.com/Homebrew/install/master/install
(如果打不开可以尝试手机热点或fq)显示如下信息,提示这个网址已经被移动到原网址多个.sh的地方了
- 然后就按新的网址打开(https://raw.githubusercontent.com/Homebrew/install/master/install.sh),发现这是个脚本文件
- 复制网页内容,保存为xxx.sh文件到任意位置 (xxx指文件名),使用终端打开这个位置,运行这个xxx.sh,提示如下信息
- 提升这个文件的权限 ,在终端中输入
chmod a+x xxx.sh
(xxx.sh 是你保存的文件,我保存的是myinstall.sh) - 再次运行这个脚本 ,即终端中输入
./xxx.sh
等待安装,期间需要一次回车继续运行。(安装的有点慢????,它先安装了Xcode Command Line Tools,这个比较快大概10m/s,取决于网速。再安装homwbrew,我平均速度只有29k/s)
- 当出现如下代码时,关闭终端,重新打开
==> Tapping homebrew/core
Cloning into ‘/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core’…
- 在终端输入如下代码:
git clone git://mirrors.ustc.edu.cn/homebrew-core.git/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core --depth=1
- 将源切换为国内源,在步骤三后需等待一会更新资源
# 步骤一
cd "$(brew --repo)"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
# 步骤二
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
#步骤三
brew update
- 再还原到官方源,步骤三后会出现
Already up-to-date.
# 步骤一
cd "$(brew --repo)"
git remote set-url origin https://github.com/Homebrew/brew.git
# 步骤二
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://github.com/Homebrew/homebrew-core
#步骤三
brew update
-
使用命令
brew doctor
检查,发现显示Your system is ready to brew.
-
此时安装成功了,输入
brew -v
查看版本,我的是
Homebrew 2.3.0-16-g0305001
Homebrew/homebrew-core (git revision fee8; last commit 2020-06-01)
-
到此结束,希望各位安装顺利????
-
常用命令如下
#查看homebrew版本
brew -v
#查看已安装的包
brew list
#安装包
brew install packageName
#卸载包
brew uninstall packageName
#查找包
brew searck packageName
#查看包信息
brew info packageName
#更新homebrew
brew update
#诊断homebrew
brew doctor
#查看帮助信息
brew -h
#用浏览器打开
brew home
#显示包依赖
brew deps
#显示包的依赖树
brew deps --installed --tree
#启动web服务器,可以通过浏览器访问http://localhost:4567/ 来同网页来管理包
brew server
#删除程序,和upgrade一样,单个软件删除和所有程序老版删除。
brew cleanup packageName
brew cleanup
#查看那些已安装的程序需要更新
brew outdated
上一篇: 百度地图路线回放
下一篇: Spring Cloud Config