flutter卡在Running "flutter pub get" in [xxxxxx]...

最近使用flutter开发项目,导入第三方点击Pub get后一直停留在Running "flutter pub get" in。。。。

解决方法(不唯一):

终端输入vim ~/.bash_profile 

将之前的:

export PUB_HOSTED_URL=https://pub.flutter-io.cn

export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn

更换为:

export FLUTTER_STORAGE_BASE_URL="https://mirrors.tuna.tsinghua.edu.cn/flutter"export PUB_HOSTED_URL="https://mirrors.tuna.tsinghua.edu.cn/dart-pub"

终端输入source ~/.bash_profile

再点击Pub get后集成成功。

如果此方法有效,原因可能为:之前的镜像已经不再维护或者科学上网,替换成清华flutter镜像就可以了。

你可能感兴趣的:(flutter卡在Running "flutter pub get" in [xxxxxx]...)