美文网首页
curl: (7) Failed to connect to r

curl: (7) Failed to connect to r

作者: 遇酒无缘 | 来源:发表于2020-05-11 00:21 被阅读0次
    1.描述

    在安装ohmyzsh时提示错误

    curl: (7) Failed to connect to raw.github.com port 443: Operation timed out
    
    2.尝试

    网上搜索了下,似乎将github换成githubusercontent可以解决问题,可惜试过后不行。
    猜想是不是这个网址被禁了,国内会不会有镜像,找了找似乎有
    国内的地址是:https://gitee.com/mirrors/oh-my-zsh

    3.解决

    通过curl或者wget安装

    • curl
    sh -c "$(curl -fsSL https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh)"
    
    • wget
    sh -c "$(wget -O- https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh)"
    

    说明:
    安装homebrew时也会遇到被禁的问题,提供一个国内能用的地址

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

    相关文章

      网友评论

          本文标题:curl: (7) Failed to connect to r

          本文链接:https://www.haomeiwen.com/subject/lymenhtx.html