Error installing homebrew on mac (curl: (6) Could not resolve host: raw.githubusercontent.com)

前端 未结 6 1756
生来不讨喜
生来不讨喜 2021-02-07 21:20

I am trying to following instructions on homebrew homepage but the following

ruby -e \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/ins         


        
6条回答
  •  旧时难觅i
    2021-02-07 22:04

    Setting proxy with Username, password and port number worked for me

     export http_proxy=http://::
     export https_proxy=http_proxy
    

    After that simply execute

    /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    

提交回复
热议问题