开始时运行平稳,但过了一会儿我就知道了:
正在下载Windows-x64工具... 下载失败。 网址: https://storage.googleapis.com/flutter_infra/flutter/1c26bf8c4b55f4fa5f0d175768a1a0cc115c70b2/windows-x64/artifacts.zip 错误:“ 403禁止访问”
我试图更改Flutter目录,但没有帮助。
答案 0 :(得分:0)
如果您位于代理服务器或防火墙后面,请遵循这些文档中的说明
https://flutter.io/community/china
https://www.dartlang.org/tools/pub/troubleshoot#pub-get-fails-from-behind-a-corporate-firewall
export https_proxy=hostname:port
https://github.com/flutter/flutter/wiki/Workarounds-for-common-issues#hot-reload-not-working
export NO_PROXY=127.0.0.1,localhost
答案 1 :(得分:0)
我遇到了同样的问题,请按照以下提示解决。
如果由于任何原因而被迫使用代理,则需要将代理设置为true。
为此,首先在终端中运行此命令:
在Linux / macOS上:
export https_proxy=hostname:port
在Windows命令提示符上:
set https_proxy=hostname:port
在Windows PowerShell上
$Env:https_proxy="hostname:port"