背景:win10
1,先用clash代理powershell命令,解决网络问题
2.使用dart 安装FVM
dart pub global activate fvm
3.安装后检查系统环境变量
3.1 我的电脑》右键 属性》高级系统设置》环境变量》PATH
看看path 里有没有
C:\Users\Administrator\AppData\Local\Pub\Cache\bin
没有就添加上,不然会报错,FVM 找不到。
4.安装指定版本flutter
fvm install 3.2.2
5.首次安装后必须使用,因为还要setup
fvm use 3.2.2
一路yes下去
6.获取dart,一路yes下去
7.cd 项目目录 flutter run -v(也可在项目中使用fvm use 3.2.2,然后运行)
常见错误: 报错1
Invalid argument(s): The provided value "C:\Users\Administrator\fvm\cache.git" is not the root of a git directory #0 GitDir.fromExisting (package:git/src/git_dir.dart:478:5)
运行 git init,继续即可
标签:fvm,git,windows,FVM,dart,安装,flutter From: https://www.cnblogs.com/DafaRan/p/18290528