I'm always excited to take on new projects and collaborate with innovative minds.

Phone

+21623776423

Social Links

Tutorials

How to install several Flutter SDK

To install multiple Flutter SDKs on your system

How to install several Flutter SDK


To install multiple Flutter SDKs on your system, you can use Flutter version management tools. The most common tool for this purpose is flutter version.

Here are the steps to install multiple Flutter SDKs:

Install Flutter:
If you haven’t installed Flutter yet, you can do so by following the official installation guide: Flutter — Get Started.

Install Dart SDK:
Flutter requires Dart, so make sure Dart SDK is installed. Flutter usually comes bundled with the Dart SDK.

Install Flutter Version Management Tool:
Use a version management tool like flutter version to easily switch between different Flutter versions.

flutter pub global activate fvm

Make sure to add the Dart SDK binaries to your system’s PATH. The command to add the binaries might look something like this:

export PATH="$PATH":"$HOME/.pub-cache/bin"

Add the above line to your shell profile (e.g., .bashrc or .zshrc) so that it persists across sessions.

Initialize FVM:
Run the following command to initialize FVM:

fvm install [desired_flutter_version]

Replace [desired_flutter_version] with the version of Flutter you want to install. For example:

fvm install 2.8.0

Use Flutter Version:
Once installed, you can switch between Flutter versions using:

fvm use [desired_flutter_version]

Verify Version:
Confirm that you are using the desired Flutter version by running:

flutter - version

This should reflect the version you installed with fvm.

Repeat steps 4–6 for each Flutter version you want to install.

Remember that Flutter projects specify their Flutter SDK version in the pubspec.yaml file. When switching between projects, it’s a good practice to run flutter pub get to ensure the correct dependencies are installed for the specified Flutter version.

This way, you can have multiple Flutter SDK versions installed on your machine and easily switch between them based on project requirements.

flutter
2 min read
Nov 18, 2025
By Haythem Galelem
Share

Leave a comment

Your email address will not be published. Required fields are marked *

Related posts

Nov 18, 2025 • 4 min read
How to Create SEO-Friendly Images for WordPress Blogs

cover everything you need to rank higher

Nov 18, 2025 • 4 min read
Technical SEO Checklist: 20 Things You Must Fix in 2025

these fixes will future-proof your site against updates

Nov 18, 2025 • 4 min read
Content Clusters: The New SEO Strategy for 2025

skyrocket your organic traffic

Your experience on this site will be improved by allowing cookies. Cookie Policy