最近使用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后集成成功。
网友评论