Установка dart на windows 10

Contents
  • System requirements
  • Choose an installation option
  • Install the Dart SDK
  • Release channel reference
    • Stable channel
    • Beta channel
    • Dev channel

This page describes how to download the Dart SDK. The Dart SDK includes the libraries and command-line tools that you need to develop Dart command-line, server, and web apps.

The Dart team supports only the latest stable release of the SDK. For full details on the SDK release lifecycle and supported versions, check out the SDK support policy.

To learn more about the Dart SDK, consult the Dart SDK overview.

System requirements

#

Dart supports the following hardware architectures and platform versions to develop and run Dart code.

Platform x64 IA32 (x86) Arm32 Arm64 RISC-V (RV64GC) OS Versions
Windows verified dangerous dangerous verified do_not_disturb_on 10, 11
Linux verified dangerous verified verified verified Debian stable,
Ubuntu LTS under standard support
macOS verified dangerous do_not_disturb_on verified do_not_disturb_on Latest three versions of macOS:
Sonoma (14), Ventura (13), Monterey (12)

verified Supported on all channels.
error Support is deprecated and might be dropped in a future Dart release.
report Support is deprecated and will likely be removed in the next stable release.
dangerous Unsupported on all channels.
do_not_disturb_on Unsupported by the operating system.

Choose an installation option

#

To install and update the Dart SDK from the stable channel, choose one of the following options:

  1. Use a package manager (Recommended).

  2. Use a Dart Docker image.

  3. Install Flutter.
    If you’ve installed or plan to install the Flutter SDK, it includes the full Dart SDK. The Flutter SDK includes the dart CLI tool in Flutter’s bin folder.

  4. Download a ZIP archive from the SDK Archive.

  5. Build the SDK from source.

Install the Dart SDK

#

To install the Dart SDK, use the appropriate package manager for your development platform.

To upgrade the Dart SDK, run the same command to install the Dart SDK from your package manager.

  • Windows
  • Linux
  • macOS

Install using Chocolatey

#

To install the Dart SDK, use Chocolatey. Chocolatey requires elevated permissions.

  1. Install Chocolatey.

  2. Launch PowerShell with elevated permissions.

    PS C:\> choco install dart-sdk

Change default install path

#

By default, Chocolatey installs the SDK at C:\tools\dart-sdk. To change that location, set the ChocolateyToolsLocation environment variable to your desired installation directory.

Verify your PATH includes Dart

#

Verify you can run Dart.

PS C:\> dart --version
Dart SDK version: 3.2.4 (stable) (Thu Dec 21 19:13:53 2023 +0000) on "win_x64"

If your development machine doesn’t return a Dart version, add the SDK location to your PATH:

  1. In the Windows search box, type env.
  2. Click Edit the system environment variables.
  3. Click Environment Variables….
  4. In the user variable section, select Path and click Edit….
  5. Click New, and enter the path to the dart-sdk directory.
  6. In each window that you just opened, click Apply or OK to dismiss it and apply the path change.

Upgrade using Chocolatey

#

To upgrade the Dart SDK, use the following command.

PS C:\> choco upgrade dart-sdk

Uninstall using Chocolatey

#

To uninstall the Dart SDK, perform the following steps.

  1. Launch PowerShell with elevated permissions.

  2. Use the following command.

    PS C:\> choco uninstall dart-sdk
  3. Remove the Dart configuration files from your home directory.

    PS C:\> Remove-Item -Recurse -Force ^
         -Path $env:LOCALAPPDATA\.dartServer,$env:APPDATA\.dart,$env:APPDATA\.dart-tool

Install using a Linux package manager

#

You have two options to install the Dart SDK on Ubuntu or Debian:

  • Use the apt-get command.
  • Download a .deb package and run the dpkg command.

Install using the apt-get package manager

#

To install Dart with apt-get, perform the following steps. You need steps 1 to 3 only for the first install.

  1. Update the package index files and install the secure HTTP package.

    sudo apt-get update && sudo apt-get install apt-transport-https
  2. Download and add the Google Linux GPG public key.

    wget -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub \
      | sudo gpg  --dearmor -o /usr/share/keyrings/dart.gpg
  3. Add the Dart package repository to your Linux system.

    echo 'deb [signed-by=/usr/share/keyrings/dart.gpg arch=amd64] https://storage.googleapis.com/download.dartlang.org/linux/debian stable main' \
      | sudo tee /etc/apt/sources.list.d/dart_stable.list
  4. Use the following sudo apt-get commands.

    sudo apt-get update && sudo apt-get install dart

Install as a Debian package

#

To install the Dart SDK as a Debian package (*.deb), perform the following steps.

  1. Download the Dart SDK Debian package.

  2. Use the sudo dpkg command to install the *.deb package.

    sudo dpkg -i dart_3.4.0-1_amd64.deb

    Substitute dart_3.4.0-1_amd64.deb with the current filename.

Upgrade the Dart SDK

#

Use the same command that you used to install the SDK.

Upgrade using apt-get

#

If you installed the Dart SDK with apt-get, use the following sudo apt-get commands.

sudo apt-get update && sudo apt-get install dart

Upgrade using dpkg

#

If you installed the Dart SDK with dpkg, use the sudo dpkg command.

sudo dpkg -i dart_3.2.6-1_amd64.deb

Substitute dart_3.4.0-1_amd64.deb with the new upgrade’s filename.

Uninstall the Dart SDK

#

Uninstall using apt-get

#

If you installed the Dart SDK with apt-get, use the sudo apt-get remove command.

  1. Use the sudo apt-get remove command.

    sudo apt-get remove -y dart
  2. Remove the Dart configuration files from your home directory.

Uninstall using dpkg

#

If you installed the Dart SDK with dpkg, use the sudo dpkg --purge command.

  1. Use the sudo dpkg --purge command.

    This removes the configuration files at the same time.

  2. Verify the SDK has been removed.

Install using Homebrew

#

To install the Dart SDK, use Homebrew.

  1. Install Homebrew if needed.

  2. Add the official tap.

  3. Install the Dart SDK.

Verify PATH includes Homebrew

#

Verify that your PATH includes the Homebrew bin directory. Setting up the correct path simplifies using Dart SDK commands such as dart run and dart format.

To get help configuring your PATH, consult the Homebrew FAQ.

Upgrade using Homebrew

#

To upgrade when a new release of Dart is available:

Switch Dart versions

#

To switch between locally installed Dart releases:

  1. Install the version to which you want to switch.

    For example, to install Dart 3.1:

  2. To switch between versions, unlink the current version and link the desired version.

    brew unlink dart@<old> \
      && brew unlink dart@<new> \
      && brew link dart@<new>

List installed Dart versions

#

To see which versions of Dart you’ve installed:

Uninstall using Homebrew

#

To uninstall the Dart SDK, use Homebrew.

  1. Uninstall the Dart SDK.

  2. Remove the Dart configuration files from your home directory.

Release channel reference

#

Stable channel

#

Dart publishes a new release to the stable channel about every three months. The current stable version is [calculating].

Use stable channel releases for building and deploying production apps.

Stable channel release version strings follow a x.y.z format:

  • x : major version
  • y : minor version
  • z : patch version

Examples of stable channel version strings include 1.24.3 and 2.1.0.

To install a stable channel release, follow the instructions on this page.

Beta channel

#

Dart publishes a new release to the beta channel about once a month. The current beta version is [calculating].

Use beta channel releases for testing your app’s compatibility with future stable versions.

Beta channel release version strings follow a x.y.z-a.b.beta format:

  • x : major version
  • y : minor version
  • z : patch version
  • a : pre-release version
  • b : pre-release patch version

Examples of beta channel version strings include 2.8.0-20.11.beta and 3.3.0-205.1.beta.

To install a beta channel release, download the SDK as a zip file.

Dev channel

#

Dart publishes a new release to the dev channel about twice a week. The current dev version is [calculating].

Use dev channel releases for testing recent fixes and experimental features.

Dev channel release version strings follow a x.y.z-a.b.dev format:

  • x : major version
  • y : minor version
  • z : patch version
  • a : development version
  • b : development patch version

Examples of dev channel version strings include 2.8.0-20.11.dev and 3.2.12-15.33.dev.

To install a dev channel release, download the SDK as a zip file.

Unless stated otherwise, the documentation on this site reflects Dart 3.7.3. Page last updated on 2025-03-03. View source or report an issue.

Dart Installation

There are multiple ways to install a dart on your system. You can install Dart on Windows, Mac, and Linux or run it from the browser.

Requirements

  • Dart SDK,
  • VS code or other editors like Intellij [We will use VS Code here].

Dart Windows Installation

Follow the below instructions to install a dart on the windows operating system.

Steps:

  • Download Dart SDK from here.
  • Copy dart-sdk folder to your C drive.
  • Add C:\dart-sdk\bin to your environment variable. Watch the video below to be more clear.
  • Open the command prompt and type dart --version to check it.
  • Install VS Code and Add Dart Extension.

Dart Windows Installation [Video]

Info

Note: Dart SDK provides the tools to compile and run dart program.

Dart Mac Installation

  • Install Homebrew From here.
  • Type brew tap dart-lang/dart in the terminal.
  • Type brew install dart in the terminal.
  • If you have any issues installing the dart, watch the video below.

Homebrew Install Command

Copy and paste this command on your terminal to install Homebrew.

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

To set the homebrew path, copy and paste this command on your terminal.

export PATH=/opt/homebrew/bin:$PATH

Dart Mac Installation [Video]

Dart Linux Installation

To install a dart on Linux, open your terminal and copy/paste the below commands.

sudo apt-get update
sudo apt-get install apt-transport-https
wget -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo gpg --dearmor -o /usr/share/keyrings/dart.gpg
echo 'deb [signed-by=/usr/share/keyrings/dart.gpg arch=amd64] https://storage.googleapis.com/download.dartlang.org/linux/debian stable main' | sudo tee /etc/apt/sources.list.d/dart_stable.list

Then, install the dart using the below command.

sudo apt-get update
sudo apt-get install dart

To set the dart path, copy and paste this command on your terminal.

export PATH="$PATH:/usr/lib/dart/bin"

Check Dart Installation

Open your command prompt and type dart --version. The dart is successfully installed on your system if it gives you a version code. If not, watch the video above.

Some Useful Commands

Command Description
dart --help Show all available commands.
dart filename.dart Run the dart file.
dart create Create a dart project.
dart fix Update dart project to new syntax.
dart compile exe bin/dart.dart Compile dart code.
dart compile js bin/dart.dart Compile dart to javascript. You can run this file with Node.js.

Run Dart On Web

You can run the dart program on your browser without installing any software. Dartpad is a web tool to write and run your dart code.

  • Run Dart Programming on Web

Install Dart Official Link

  • Install Dart Official Link

Can You Run Dart From Mobile?

Yes, you can use DartPad to run simple dart programs from your phone without installing any software. For bigger projects, using DartPad is not recommended.

Last Updated :
21 Mar, 2025

To do a lot of interesting programming stuff using the Dart programming language, we have to install the Dart SDK. Dart SDK is a pre-compiled version so we have to download and extract it only.

In this article, we will learn how to perform Dart SDK Download.

Table of Content

  • Install Dart SDK in Windows
  • Install Dart in Linux
  • Install Dart in MacOs

Introduction-to-Dart-Installation-of-Dart-basics

Install Dart SDK in Windows

Step 1 : Download Dart SDK

Download Dart SDK from the Dart SDK archive page.

Use this Link to Dart SDK Download

dart_sdk

Click on DART SDK to download SDK for Windows 64-Bit Architecture. The download will start and a zip file will be downloaded.

Note: To download SDK for any other OS select OS of your choice.

Extract the contents of the downloaded zip file and after extracting the contents of the zip file will be as shown:

dart_sdk_folder

Step 3 : Running Dart.

Now open the bin folder and type “cmd” as given below:

opening_cmd

Command Prompt will open with our desired path of bin folder and now type “dart“.

dart_command_in_cmd

Now we are ready to use the dart through the bin folder but setting up the path in environment variables will ease our task of Step 3 and we can run the dart from anywhere in the file system using the command prompt.

Another Method to Install Dart SDK Installation in Windows

To install Dart in the window system we will be using Chocolatey.

Step 1 : To install Dart

C:\> choco install dart-sdk

Step 2 : To Update Dart

C:\> choco upgrade dart-sdk

Setting Path in Environment Variables

Setting up path in environment variables. Open Environment Variables from advanced system settings and add Path in System Variables as depicted in the image:

Environment Variables for SDK Installation in Dart

Now we are done to use Dart from anywhere in the file system.

Step 3 : Run Dart Using cmd

dart_command_in_cmd

Install Dart in Linux

Terminal Commands are responsible for the Installation of Applications in Linux. So, there are some fixed set of commands which can be used to install. Let us check these types of commands which are mentioned below:

Step 1 : Update and Upgrade the apt

It is a prerequisite for installing any application. Commands to Upgrade and Update apt are mentioned below:

$ sudo apt-get update
$ sudo apt-get upgrade

// Few older version will face issues while installtion so use
$ sudo apt-get install apt-transport-https

Step 2 : Create a Dart Repository and Install GPG keys from Google

Create a Repository to store Dart and also install gpg keys from Google used to sign the Dart packages to your system’s list of trusted keys.

$ sudo sh -c 'wget -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -'
$ sudo sh -c 'wget -qO- https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list'

Step 3 : Install Dart

The final Step will be to install Dart in your Linux operated PC.

$ sudo apt-get update
$ sudo apt-get install dart

Setting the Path of Dart in Linux

Setting Path of Dart in Linux to execute the Dart Programs.

// Dart to your Path
$ export PATH="$PATH:/usr/lib/dart/bin"

// Apply Changes
$ source ~/.bashrc

// This command should display the installed Dart SDK version
$ dart --version

Install Dart in MacOs

We will install Dart in macOS using Homebrew.

Step 1 : Install Homebrew

Install Homebrew, and then run the following commands.

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Step 2 : Install Dart

Install Dart by running the commands mentioned below.

$ brew tap dart-lang/dart
$ brew install dart

Step 3 : Upgrade the new release of Dart

To upgrade when a new release of Dart is available:

$ brew upgrade dart

Step 4 : Verify Dart Installation

$ dart --version

Note : Flutter developers have Dart bundled with the Flutter SDK, eliminating the need for a separate installation.

With Dart configured, developers can create high-performance applications across various platforms, utilizing its efficient syntax and strong ecosystem.

Dart Programming language tutorial for beginner examples..

This tutorial shows the steps to install and set up Dart on a Windows machine.

Chocolatey is a tool manager to install and uninstall Dart on Windows

First, Make sure that the choco command is working or not.
Next, Open `Microsoft PowerShell with Administrator permission.

Type the command “choco” in Powershell.

PS C:\> choco
Chocolatey v0.10.15
Please run 'choco -?' or 'choco <command> -?' for the help menu.

It gives the version number if the choco command gives the version number.

If choco is not installed Please install choco
.

If you are installing the first time, Please run the below command.

choco install dart-sdk

Here is an installation logs

PS C:\WINDOWS\system32> choco install dart-sdk
Chocolatey v0.10.15
Installing the following packages:
dart-sdk
By installing you accept licenses for the packages.

dart-sdk v2.16.1 [Approved]
dart-sdk package files install completed. Performing other installation steps.
The package dart-sdk wants to run 'chocolateyInstall.ps1'.
Note: If you don't run this script, the installation will fail.
Note: To confirm automatically next time, use '-y' or consider:
choco feature enable -n allowGlobalConfirmation
Do you want to run the script?([Y]es/[A]ll - yes to all/[N]o/[P]rint): yes

PATH environment variable does not have C:\tools\dart-sdk\bin in it. Adding...
PATH environment variable does not have C:\Users\Kiran\AppData\Roaming\Pub\Cache\bin in it. Adding...
Downloading dart-sdk 64 bit
  from 'https://storage.googleapis.com/dart-archive/channels/stable/release/2.16.1/sdk/dartsdk-windows-x64-release.zip'
Progress: 100% - Completed download of C:\Users\Kiran\AppData\Local\Temp\dart-sdk\2.16.1\dartsdk-windows-x64-release.zip (185.7 MB).
The download of dartsdk-windows-x64-release.zip (185.7 MB) was completed.
Hashes match.
Extracting C:\Users\Kiran\AppData\Local\Temp\dart-sdk\2.16.1\dartsdk-windows-x64-release.zip to C:\tools...
C:\tools
Environment Vars (like PATH) have changed. Close/reopen your shell to
 see the changes (or in powershell/cmd.exe just type `refreshenv`).
 The installation of dart-sdk was successful.
  Software installed to 'C:\tools'

Chocolatey installed 1/1 packages.
 See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).

Enjoy using Chocolatey? Explore more amazing features to take your
experience to the next level at
 https://chocolatey.org/compare

Once installation is done, It is installed in the c:\tools folder.

It contains the dart-sdk folder.

Next, add environment variables

if you don’t run PowerShell with administrator permission, It throws the below error
dart-sdk (exited 1) — dart-sdk not installed. An error occurred during installation:
Access to the path ‘C:\ProgramData\chocolatey\lib\dart-sdk’ is denied.

PS C:\> choco install dart-sdk
Chocolatey v0.10.15
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 without 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://chocolatey.org/install#non-administrative-install for details.


 Do you want to continue?([Y]es/[N]o): yes

Installing the following packages:
dart-sdk
By installing you accept licenses for the packages.
dart-sdk not installed. An error occurred during installation:
 Access to the path 'C:\ProgramData\chocolatey\lib\dart-sdk' is denied.
dart-sdk package files install completed. Performing other installation steps.
The installation of dart-sdk was NOT successful.
dart-sdk not installed. An error occurred during installation:
 Access to the path 'C:\ProgramData\chocolatey\lib\dart-sdk' is denied.

Chocolatey installed 0/1 packages. 1 package failed.
 See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).

Failures
 - dart-sdk (exited 1) - dart-sdk not installed. An error occurred during installation:
 Access to the path 'C:\ProgramData\chocolatey\lib\dart-sdk' is denied.

Next, Add environment variables with the dart-sdk path

Following are the steps required t

  • In the windows search, Type env and select “Edit the system environment variables”
    Windows-environment-variables.png
  • It opens the System Properties window
  • Select Environment Variables
  • In the User variables, Select Path and click on Edit, It opens the Edit environment variables window
  • Click on the New button
  • Add C:\tools\dart-sdk\bin value and select Ok
  • Close all windows by selecting an apply or ok button
  • Close all terminals or command prompt windows

Now, open the command line and type the dart command with the --version option

C:\>dart --version
Dart SDK version: 2.16.1 (stable) (Tue Feb 8 12:02:33 2022 +0100) on "windows_x64"

It gives a version installed on the machine.

How to install Dart in Windows 10, 11?

Today we will learn how can we setup Dart SDK in our machine for app development. So let’s begin our main process.

First of all you need to visit Dart official documentation page. You will see a documentation instruction as like this image:

Dart SDK website screenshot

You need to click downloading the SDK as a zip file. After clicking this you will navigate to the Dart archive page. Now you can download the top latest SDK archive from the stable channel. Make sure your OS is selected in the OS dropdown option.

Dart SDK Archive screenshot

In here we can see the latest version is 3.2.6 now. So, we need to download it by clicking Dart SDK (SHA-256). You will prompted to dialog for selecting download path. After download you need to extract the zip file. You can use WinRAR for extract any compressed file in Windows OS.

Dart SDK zip file extraction screenshot

After extraction done, click the extracted folder. You will see a folder called dart-sdk. Cut the folder & paste it in a safe directory. You can paste it inside your C: drive.

Now copy the file path address.

Now search for “control panel”.

In control panel screen search for “system variable” you will find a option like this following screenshot.

Click the option called “Edit the system environment variable”. After clicking you will see a prompt as like this following screenshot. then click the “Environment Variable” button.

Now select Path from your “User variable” section then click edit button.

You can see a new dialog. Now click the New button & paste the dart-sdk path from your clipboard.

Almost done! now press one by one ok button for close all the dialog and the installation is done for now. For check the installation is ok or not, open your terminal window & type dart -v . If you see a result as like this screenshot:

Congratulation! you successfully installed Dart language in your local machine. Now you can run any Dart project.

Thanks for staying with us.. If you want to learn Dart programming from scratch & want to develop eye catching software you can learn Dart from us.
Happy coding…..

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Как подключить ноутбук к телевизору через hdmi на windows 10 нет сигнала на телевизоре
  • Плохое качество звука в блютуз наушниках на пк windows 11
  • Как на astra linux устанавливать программы exe windows
  • Как убрать виджет погоды с панели задач windows 11
  • Bootcamp windows 10 где находится