Mac配置flutter 开发环境
1.https://flutter.io/setup-macos/ 下载flutter的SDK
2.***打开终端 cd 到flutter的目录下***
3.执行 sudo vim ~/.bash_profile
4.进入bash_profile中后 加入以下 :
export PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
export PUB_HOSTED_URL=https://pub.flutter-io.cn
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
export PATH=flutter的路径/bin:$PATH
加入这些之后
:wq
5.执行source ~/.bash_profile
6.执行 flutter -h
flutter doctor
如果之前的命令都执行 并且没有出现 brew command not found 这些问题那么 环境初步搭建好
7. 执行 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" (等待下载完 时间较长)
8. 执行 brew --version 如果出现版本号 则说明安装成功
9. 下面依次执行:
flutter doctor --android-licenses
这个命令执行后一路点y 就Ok了
brew install --HEAD libimobiledevice
brew install ideviceinstaller
brew install ios-deploy
brew install cocoapods
pod setup
//安装cocoapods
sudo gem install cocoapods
这几个命令需要时间较长建议不要让屏幕熄灭 导致网络断了。。
暂且记录以下 以后再用到的时候拿出来看,可能配置的时候会出来许多奇奇怪怪的问题 一点建议就是cd 到目录下在执行命令 配置环境变量的时候 复制的时候要注意不能有空格。