install-flutter-from-git
Installation
SKILL.md
Install Flutter from Git
This skill guides you through installing the Flutter SDK using git clone and setting up the environment for Web, Mobile, and Desktop development.
1. Prerequisites (All Platforms)
Ensure you have the following installed:
- Git: Install Git
- Curl/Unzip (macOS/Linux usually have these; Windows usually needs Git Bash or similar)
2. Install Flutter SDK
macOS / Linux
Open your terminal and run the following commands to clone the stable branch of the Flutter SDK.
# Create a directory for development (e.g., ~/development)
mkdir -p ~/development
cd ~/development