记录一个Flutter在安装过程中耗费我两天的问题。。。
在安装Flutter完成后想使用VSCode创建新项目的时候一直提示找不到Flutter SDK
$ open ~/.bash_profile
添加
export PUB_HOSTED_URL=https://pub.flutter-io.cn
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
export PATH='pwd'/flutter/bin:$PATH
'pwd'为Flutter在你本地的路径
$ source ~/.bash_profile
$ echo $PATH
问题终于解决了
网友评论