Windows11でFlutter SDKをインストールする方法
環境
エディション Windows 11 Pro バージョン 21H2 システムの種類 64bit
操作方法
1.Flutter SDKのインストール
下記サイトによりFlutter SDKダウンロードを行います。
https://docs.flutter.dev/get-started/install
「Windows」を選択します。
2.ファイルを解凍します
ダウンロードしたファイル「flutter_windows_3.0.5-stable.zip」を「c:\study」に解凍します。
3.環境パスを設定します
1) スタート検索フォームに「システム環境変数」と入力し、「システム環境変数の編集」をクリックします。 2)「詳細設定」タブ->「環境変数(N)」をクリックします。 3) 「システム環境変数(S)」->「新規(W)」をクリックします。 4) 新しいシステム変数の画面が表示されます。 変数名(N):FLUTTER_HOME 変数値(V):C:\study\flutter
5)「システム環境変数(S)」->「Path」->「編集(I)」->「新規(N)」をクリックします。
「C:\study\flutter\bin」と入力し「OK」をクリックします。
4.Flutterのバージョンを確認します。
「スタート」を右クリックして「Windows ターミナル(管理者)」をクリックします。
ユーザーアカウント制御画面が表示されます。「はい」を選択します。
PS C:\study> flutter --version Flutter 3.0.5 • channel stable • https://github.com/flutter/flutter.git Framework • revision f1875d570e (6 weeks ago) • 2022-07-13 11:24:16 -0700 Engine • revision e85ea0e79c Tools • Dart 2.17.6 • DevTools 2.12.2
5.Dartのバージョンを確認します
PS C:\study> dart --version Dart SDK version: 2.17.6 (stable) (Tue Jul 12 12:54:37 2022 +0200) on "windows_x64"
6. flutter doctorを実行します
PS C:\study> flutter doctor Running "flutter pub get" in flutter_tools... 13.8s Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel stable, 3.0.5, on Microsoft Windows [Version 10.0.22000.856], locale ja-JP) [✗] Android toolchain - develop for Android devices ✗ Unable to locate Android SDK. Install Android Studio from: https://developer.android.com/studio/index.html On first launch it will assist you in installing the Android SDK components. (or visit https://flutter.dev/docs/get-started/install/windows#android-setup for detailed instructions). If the Android SDK has been installed to a custom location, please use `flutter config --android-sdk` to update to that location. [✓] Chrome - develop for the web [!] Visual Studio - develop for Windows (Visual Studio Community 2022 17.3.0) ✗ Visual Studio is missing necessary components. Please re-run the Visual Studio installer for the "Desktop development with C++" workload, and include these components: MSVC v142 - VS 2019 C++ x64/x86 build tools - If there are multiple build tool versions available, install the latest C++ CMake tools for Windows Windows 10 SDK [!] Android Studio (not installed) [✓] VS Code (version 1.70.1) [✓] Connected device (3 available) [✓] HTTP Host Availability ! Doctor found issues in 3 categories.