参考了一下github上的解决方案
@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
🍺🍺🍺done
网友评论