美文网首页
CocoaPods 安装过程中qiang代理打开设置

CocoaPods 安装过程中qiang代理打开设置

作者: 就用帅气点的昵称吧 | 来源:发表于2023-06-24 09:59 被阅读0次

    CocoaPods 安装过程中设置代理的方法

    1、输入命令

    vi ~/.zshrc 

    2、

    function on_proxy() {     export no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"     export http_proxy="http://127.0.0.1:7890"     export https_proxy=$http_proxy     export all_proxy=socks5://127.0.0.1:7890     echo -e "\n"     echo -e "\033[32m代理已开启\033[0m" } function off_proxy(){     unset http_proxy     unset https_proxy     unset all_proxy     echo -e "\033[31m代理已关闭\033[0m" }

    相关文章

      网友评论

          本文标题:CocoaPods 安装过程中qiang代理打开设置

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