美文网首页
Flutter环境配置 ! NO_PROXY is not se

Flutter环境配置 ! NO_PROXY is not se

作者: 令狐冲_ | 来源:发表于2022-02-11 17:26 被阅读0次

    参考了一下github上的解决方案

    image.png

    @aljibbs Please try to add export NO_PROXY=localhost,127.0.0.1 to ~/.bash_profile.

    继续run flutter doctor,新报错:

    [!] Proxy Configuration
        ! NO_PROXY does not contain ::1
    

    研究了一会儿,发现可以给NO_PROXY设置多个值,跟在后面用,隔开即可
    最终修复方案如下:

    export NO_PROXY=localhost,::1,127.0.0.1,LOCALHOST
    

    当然最好还是写到bash_profile里面.
    再次run flutter doctor

    image.png
    🍺🍺🍺done

    相关文章

      网友评论

          本文标题:Flutter环境配置 ! NO_PROXY is not se

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