zoukankan      html  css  js  c++  java
  • mac安装homebrew

    安装

    https://brew.sh/index_zh-cn
    

    homebrew官网地址

    https://brew.sh/index_zh-cn
    

    修改源

    参考地址https://developer.aliyun.com/mirror/homebrew?spm=a2c6h.13651102.0.0.3e221b112ljMH5
    brew下载包速度慢,需修改源

    • Bash 终端配置
        # 替换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' >> ~/.bash_profile
        source ~/.bash_profile
    

    恢复默认配置

    # 重置brew.git:
    	$ cd "$(brew --repo)"
    	$ git remote set-url origin https://github.com/Homebrew/brew.git
    	# 重置homebrew-core.git:
    	$ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
    	$ git remote set-url origin https://github.com/Homebrew/homebrew-core.git
    
    

    然后删掉 bash_profile文件中HOMEBREW_BOTTLE_DOMAIN 环境变量

  • 相关阅读:
    传统 Ajax 已死,Fetch 永生
    redux-thunk, redux-logger 阮一峰 ( react中间件 )
    flow类型检查
    svn删除项目
    svn导入项目
    ubantu搭建svn
    惠普uefi装系统
    win7跳过登陆界面
    phpstorm配置Xdebug进行调试PHP教程
    jquery 给下拉框赋值
  • 原文地址:https://www.cnblogs.com/missj/p/12631810.html
Copyright © 2011-2022 走看看