一、背景
在公司网络下,需要设置代理flutter才能正常连接网络,比如运行flutter doctor
的时候,会检查是否能够正常连接网络。
二、解决方案
在terminal中输入如下的命令,修改成自己的公司代理。
set http_proxy=https://your-company.proxy.com:8080
set https_proxy=https://your-company.proxy.com:8080
set no_proxy=localhost,127.0.0.1,::1
三、参考
1.Solve proxy problem for your development environment
所有评论(0)