Posts Learn Components Snippets Categories Tags Tools About
/

How to Install Flutter on macOS Monterey

Get to know how to install Flutter latest version on your macOS Monterey by following our step by steps post

Created on Dec 04, 2021

2343 views

In this short snippet, you will learn how to install Flutter in macOS Monterey using Homebrew. If you haaven't already known what Homebrew is, it's a package manager used to install stuff that you need on macOS. Let's get started!

Step 1: Install Homebrew


The first step is to install Homebrew and you can install it using the command line below.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Step 2: Update Homebrew Repository

Before installing anything, you have to update the homebrew repository first to get all of the latest packages.
brew update  

Step 3: Install Flutter Using Homebrew


To install flutter you need to use the "brew install" command and it's like below.
brew install flutter
Do give it some time to install the necessary dependencies and once it's completed then you can check the version.
flutter --version
By right, if everything is successful then you will see the output below.
Flutter 2.5.3 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 18116933e7 (7 weeks ago) • 2021-10-15 10:46:35 -0700
Engine • revision d3ea636dc5
Tools • Dart 2.14.4
By now you will have MySQL installed on macOS Monterey. Cheers!

Other Reads

If you like our tutorial, do make sure to support us by being our Patreon or buy us some coffee ☕️

Load comments for How to Install Flutter on macOS Monterey

)