flutter pub get卡住解决办法
vim ~/.bash_profile
export PUB_HOSTED_URL=https://pub.flutter-io.cn
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
export PATH=/Users/路径/flutter/bin:$PATH
source ~/.bash_profile
以为可以了。意外报错
-bash: .bash_profile: No such file or directory
解决办法
vim ~/.bash_profile
//删除第一行的 source ~/.profile 替换成
export PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
保存再执行
source ~/.bash_profile
成功,再去flutter项目flutter pub get,ok了