码迷,mamicode.com
首页 > 其他好文 > 详细

Homebrew踩坑

时间:2019-08-29 23:52:29      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:命令   src   user   brew   ssl https   content   file   wget   homebrew   

参考链接:https://www.cnblogs.com/xd502djj/p/6923690.html

什么是Homebrew

Homebrew是一个包管理器,它将软件包安装到/usr/local/Cellar目录中,并在/usr/local/bin中创建符号链接,类似于Debian/Ubuntu系列的apt和Redhat/Fedora系列的yum

安装与使用

官网:https://brew.sh/

  1. 在终端里执行
    /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  2. 按回车继续

  3. 出现了这两条报错
    技术图片

    解决办法:sudo chown -R aaron(你的用户名称):staff *

  4. 终端输入brew doctor检查一下

    技术图片

    安装成功,会自动创建目录 /usr/local/Cellar来存放Homebrew安装的程序。

  5. 常用命令

    1. 搜索软件:brew search 软件名,如:brew search python

    2. 安装软件:brew install 软件名,如:brew install python

    3. 卸载软件:brew remove 软件名,如:brew remove wget

    4. 查询已安装的软件:brew list

更换镜像源

这里选的是清华源:https://mirrors.tuna.tsinghua.edu.cn/help/homebrew/

更换homebrew

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

更换homebrew-bottles

# bash
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile

# zsh
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.zshrc
source ~/.zshrc

Homebrew踩坑

标签:命令   src   user   brew   ssl https   content   file   wget   homebrew   

原文地址:https://www.cnblogs.com/kangyuqi/p/11432361.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!