【flutter】flutter sdk获取方法

下载以下安装包来获取最新的 stable Flutter SDK:

flutter_macos_1.20.2-stable.zip

想要获取到其他版本的安装包,请参阅 SDK 版本列表 页面。

将文件解压到目标路径, 比如:

$ cd ~/development
$ unzip ~/Downloads/flutter_macos_1.20.2-stable.zip

如果你不想安装固定版本的安装包,你可以跳过步骤 1 和 2。或者是从 GitHub 上的 Flutter repo 获取源代码,并根据需要更改分支或标签。

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

你也可以根据需要切换选择分支,比如用下面的参数获得稳定版本:

$ git clone https://github.com/flutter/flutter.git -b stable --depth 1

你可能感兴趣的:(Flutter)