Windows11 Dartをインストールして実行する方法
環境
エディション Windows 11 Pro
バージョン 21H2
システムの種類 64bit
操作方法
1.Dart-sdkをインストールします
C:\>choco install dart-sdk Chocolatey v1.1.0 Chocolatey detected you are not running from an elevated command shell (cmd/powershell). You may experience errors - many functions/packages require admin rights. Only advanced users should run choco w/out an elevated shell. When you open the command shell, you should ensure that you do so with "Run as Administrator" selected. If you are attempting to use Chocolatey in a non-administrator setting, you must select a different location other than the default install location. See https://docs.chocolatey.org/en-us/choco/setup#non-administrative-install for details. Do you want to continue?([Y]es/[N]o):y
2.Dartバージョンを確認します
C:\>dart --version Dart SDK version: 2.17.6 (stable) (Tue Jul 12 12:54:37 2022 +0200) on "windows_x64"
3.プログラムを実行します。
以下のコードを記載します。
void main() { print("hello worldb Dart"); }
C:\test\dart>dart main.dart
hello worldb Dart