zoukankan      html  css  js  c++  java
  • Homebrew 国内镜像源

    腾讯云的速度比较快

    替换brew.git:
    cd "$(brew --repo)"
    git remote set-url origin https://mirrors.cloud.tencent.com/homebrew/brew.git
    
    替换homebrew-core.git:
    cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
    git remote set-url origin https://mirrors.cloud.tencent.com/homebrew/homebrew-core.git

    更新 bottles源

    bash

    echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.cloud.tencent.com/homebrew-bottles' >> ~/.bash_profile
    source ~/.bash_profile

    zsh

    echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.cloud.tencent.com/homebrew-bottles' >> ~/.zshrc
    source ~/.zshrc

    官方链接:

    https://mirrors.cloud.tencent.com/help/homebrew-bottles.html

    阿里云

        # 替换brew.git:
        cd "$(brew --repo)"
        git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git
        # 替换homebrew-core.git:
        cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
        git remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git
        # 应用生效
        brew update
        # 替换homebrew-bottles:
        echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.zshrc
        source ~/.zshrc
  • 相关阅读:
    Java数组和方法
    Java数组
    Java方法升级
    Java流程控制
    Java编译器的常量优化
    chrome使用技巧(看了定不让你失望)
    C 排序法
    mysql 线程池 数据库连接池
    php mysql
    深入剖析PHP输入流 php://input (转载 http://www.nowamagic.net/academy/detail/12220520)
  • 原文地址:https://www.cnblogs.com/sevck/p/14250480.html
Copyright © 2011-2022 走看看