flutter 中国官网提供处理方式 https://flutter.dev/community/china#community-run-mirror-sites
标准入口https://flutterchina.club/
中文网https://flutterchina.club/setup-macos/
sdk 版本下载 https://flutter.cn/docs/development/tools/sdk/releases
主要参考 :
https://www.jianshu.com/p/734c2e9c460a
https://www.jianshu.com/p/e701e840f699
PWD 当前路径 https://blog.csdn.net/qikule/article/details/80228722
path部分解释https://www.cnblogs.com/fuxueming/p/6603119.html
中国配置Flutter使用镜像站点
配置Flutter使用镜像站点
$ export PUB_HOSTED_URL=https://pub.flutter-io.cn
$ export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
下载项目
$ git clone -b dev https://github.com/flutter/flutter.git
其他稳定版本下载
git clone -b master https://github.com/flutter/flutter.git
./flutter/bin/flutter --version
有效 :git clone https://github.com/flutter/flutter.git -b stable --depth 1
git clone -b master https://github.com/flutter/flutter.git
设置路径 $PWD 当前路径
$ export PATH="$PWD/flutter/bin:$PATH"
检查状态
$ cd ./flutter
$ flutter doctor
完成这些步骤后, 正常设置Flutter。
path 路径配置 https://blog.csdn.net/huxinguang_ios/article/details/78709428
一般在Mac上配置环境变量时经常要创建、编辑 .bash_profile文件。
创建该文件时一般都会选择在当前用户目录下,即Mac下的.bash_profile 文件的路径是 /Users/YourMacUserName/.bash_profile (如果该文件已经创建过的话)
1、创建 .bash_profile
(1) 启动终端
(2) 进入当前用户的home目录(默认就是):cd ~ 或 cd /Users/YourMacUserName
(3)输入touch .bash_profile
2、查看 、编辑 .bash_profile 文件
(1)终端输入 open -e .bash_profile (如果只是查看,直接使用open .bash_profile)
(2)编辑
(3)关闭即可保存修改
3、更新刚配置的环境变量
输入source .bash_profile
Flutter中处理
1.打开
open -e .bash_profile
2.添加路径
export PATH=${PATH}:下载的文件夹路径/flutter/bin:$PATH
3.刷新
source .bash_profile
3.安装Flutter和Dart插件
需要安装两个插件:
Flutter插件: 支持Flutter开发工作流 (运行、调试、热重载等).
Dart插件: 提供代码分析 (输入代码时进行验证、代码补全等).
补充:
git clone https://github.com/zce/music-player.git-b vue --depth 1
eg: git clone [https://xxxxx.git](https://xxxxx.git/) -b 12.0 --depth 1
最后的 1代表把最后一次的提交下载下来。
如果不设置depth 1 那么就会把所有的提交下载,这样会比较大。
其中 vue是分支名
-b 指的是分支。代表下载vue这个分支。
-b 12.0:分支 12.0
--depth 1:depth 克隆深度,1 为最近一次的 commit。
用这个命令的目的是因为如果将所以 commit 下载下来会非常大,所以只克隆最近的一次。
网友评论