Windows使用fvm管理多个flutter版本

  1. 安装dart
    下载地址:https://gekorm.com/dart-windows/
    验证是否安装成功:$ dart --version
image.png
  1. 安装fvm
    pub global activate fvm

系统环境变量,Path中添加C:\Users\yuanzhiying\AppData\Local\Pub\Cache\bin

image.png

关闭命令行,重启。

image.png

配置fvm下载地址:fvm config --cache-path E:\fvm\versions\

image.png

  1. 安装flutter
    如果没有安装git,安装git,下载地址:https://git-scm.com/downloads
    fvm install stable
image.png
image.png
  1. fvm list

    image.png

  2. 设置全局默认的flutter版本
    fvm global stable

更多具体fvm使用,查看MacOS使用fvm管理多个flutter版本

  1. 项目设置ignore
    ignore文件添加:
# fvm
.fvm/flutter_sdk
  1. 执行fvm use stable
    执行命令,如果出现Android Studio没有权限,设置Android Studio快捷方式为管理员权限打开。
image.png

你可能感兴趣的:(Windows使用fvm管理多个flutter版本)