- chocolatey Install https://chocolatey.org/install (Windows) (Read CarefullY If Required)
- Brew Install https://brew.sh/ (MacOS) (Read CarefullY If Required)
- Powershell in Administration or Terminal User Open with Administration
- For
Flutter on Windows: "Unable to find git in your PATH" if terminal is not in admin mode
Issue
- any programme run as adminnistrator ex. Android Studio shortcut
Run as Administrator
- Install fvm (Flutter Version Manager)
choco install fvm
and Accept All - Check flutter Installed Currently
fvm list
- Check flutter Realeased Versions
fvm releases
- Install flutter Specific Version
fvm install 3.0.0
orfvm install stable
orfvm install dev
- Use flutter Globally
fvm global 3.0.0
and copy the flutter path and pest it to enviorment PATH - Now check with
flutter doctor
- Use flutter LOCALLY
fvm use 3.0.0
for Create Specific Version Project - If Not Required Flutter
fvm remove 3.0.0
- Android Studio Goto File > Setting > Languages & Frameworks > Flutter > Flutter SDK Path:
C:\Users\devom\fvm\default
- Download and use globally easily and path to andorid studio for switiching to another version
- Install fvm (Flutter Version Manager)
brew tap leoafarias/fvm
thenbrew install fvm
and Accept All - Check flutter Installed Currently
fvm list
- Check flutter Realeased Versions
fvm releases
- Install flutter Specific Version
fvm install 3.0.0
- Use flutter Globally
fvm global 3.0.0
and copy the flutter path and pest it to enviorment PATH - open in terminla
vim $HOME/.zshrc
and pressi
to insertexport PATH="/Users/devomman/fvm/default/bin:$PATH"
thenesc
and write:wq!
to save - Now check with
flutter doctor
- Use flutter LOCALLY
fvm use 3.0.0
for Create Specific Version Project - If Not Required Flutter
fvm uninstall 3.0.0
- Android Studio Goto File > Setting > Languages & Frameworks > Flutter > Flutter SDK Path:
/Users/devomman/fvm/default
- Download and use globally easily and path to andorid studio for switiching to another version
- Issue: (x) zsh: command not found: .zshrc
- Fix: (v)
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
- choco uninstall dart-sdk
- choco uninstall fvm
- If Exists MAC:
/Users/devomman/fvm/
and WINDOWS:C:\Users\devom\fvm\
then Delete this folder
@devomman Thanks!