Mac環境搭建flutter並配置環境變量

Windows環境搭建flutter

https://blog.csdn.net/ytfunnysite/article/details/81070066git

克隆項目

  • git clone https://github.com/flutter/flutter.git

配置變量,使用中國鏡像

  1. 進入當前用戶的home目錄 輸入
cd ~
  1. 建立.bash_profile 輸入
touch .bash_profile
  1. 編輯.bash_profile文件
open -e .bash_profile
  1. 配置鏡像
export PUB_HOSTED_URL=https://pub.flutter-io.cn
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
  1. command + s保存文件
  2. 更新配置的環境變量
source .bash_profile
  1. 驗證PATH
echo $PATH
  1. .bash_profile文件配置ANDROID_HOME環境變量:
export ANDROID_HOME=/program/sdk
export PATH=${PATH}:${ANDROID_HOME}/platform-tools
export PATH=${PATH}:${ANDROID_HOME}/tools
export PATH=${PATH}:${ANDROID_HOME}/build-tools/28.0.3
  1. 查看當前flutter版本分支
flutter channel
  1. 切換flutter穩定版stable分支
flutter channel stable
  1. 查看和升級flutter版本
flutter --version
flutter upgrade

使用壓縮包

若是沒有在線下載,而是使用的官方壓縮包,能夠經過.zshrc配置環境變量github

cd ~
touch .zshrc
open -e .zshrc

打開.zshrc 後配置解壓的flutter路徑 export PATH="$PATH:/Library/flutter/bin"保存後刷新配置bash

source $HOME/.zshrc 
echo $PATH  //驗證環境變量
相關文章
相關標籤/搜索